Updating Resx designer file to minimize conflicts after resx change
This commit is contained in:
parent
12fa69c7bc
commit
68bb44d73e
|
|
@ -1,7 +1,7 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.17929
|
||||
// Runtime Version:4.0.30319.34003
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
|
|
@ -11,7 +11,6 @@
|
|||
namespace Microsoft.AspNet.Razor.Resources
|
||||
{
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -46,11 +45,7 @@ namespace Microsoft.AspNet.Razor.Resources
|
|||
{
|
||||
if (object.ReferenceEquals(resourceMan, null))
|
||||
{
|
||||
#if NET45
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.Razor.RazorResources", typeof(RazorResources).Assembly);
|
||||
#else
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.Razor.RazorResources", typeof(RazorResources).GetTypeInfo().Assembly);
|
||||
#endif
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.Razor.RazorResources", System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(RazorResources)).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
|
|
@ -452,17 +447,6 @@ namespace Microsoft.AspNet.Razor.Resources
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to "{1}" is not a valid value for the "{0}" option. The "Option {0}" statement must be followed by either "On" or "Off". .
|
||||
/// </summary>
|
||||
internal static string ParseError_InvalidOptionValue
|
||||
{
|
||||
get
|
||||
{
|
||||
return ResourceManager.GetString("ParseError_InvalidOptionValue", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Markup in a code block must start with a tag and all start tags must be matched with end tags. Do not use unclosed tags like "<br>". Instead use self-closing tags like "<br/>"..
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -403,4 +403,7 @@ Instead, wrap the contents of the block in "{{}}":
|
|||
<data name="Trace_TreesCompared" xml:space="preserve">
|
||||
<value>[BG][{0}] Trees Compared in {1} milliseconds. Different = {2}</value>
|
||||
</data>
|
||||
<data name="ParseError_Sections_Cannot_Be_Nested" xml:space="preserve">
|
||||
<value>Section blocks ("{0}") cannot be nested. Only one level of section blocks are allowed.</value>
|
||||
</data>
|
||||
</root>
|
||||
Loading…
Reference in New Issue