Two quick fixes

- add missing closing quote in a resource
- cleanup `project.json` files
  - remove some package references that are found transitively
This commit is contained in:
Doug Bunting 2015-09-08 08:39:03 -07:00
parent d458e8ecb2
commit 6568de38d1
3 changed files with 4 additions and 12 deletions

View File

@ -145,7 +145,7 @@
<value>Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page.</value> <value>Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page.</value>
</data> </data>
<data name="TagHelperDescriptorResolver_InvalidTagHelperPrefixValue" xml:space="preserve"> <data name="TagHelperDescriptorResolver_InvalidTagHelperPrefixValue" xml:space="preserve">
<value>Invalid tag helper directive '{0}' value. '{1} is not allowed in prefix '{2}'.</value> <value>Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.</value>
</data> </data>
<data name="TagHelperDescriptorFactory_Attribute" xml:space="preserve"> <data name="TagHelperDescriptorFactory_Attribute" xml:space="preserve">
<value>Attribute</value> <value>Attribute</value>

View File

@ -20,19 +20,11 @@
"dnx451": { }, "dnx451": { },
"dnxcore50": { "dnxcore50": {
"dependencies": { "dependencies": {
"System.Collections": "4.0.11-beta-*",
"System.Diagnostics.Debug": "4.0.11-beta-*",
"System.Diagnostics.Tools": "4.0.1-beta-*", "System.Diagnostics.Tools": "4.0.1-beta-*",
"System.IO": "4.0.11-beta-*",
"System.IO.FileSystem": "4.0.1-beta-*", "System.IO.FileSystem": "4.0.1-beta-*",
"System.Linq": "4.0.1-beta-*", "System.Linq": "4.0.1-beta-*",
"System.Reflection": "4.0.11-beta-*", "System.Security.Cryptography.Algorithms": "4.0.0-beta-*",
"System.Resources.ResourceManager": "4.0.1-beta-*", "System.Threading.Thread": "4.0.0-beta-*"
"System.Runtime.Extensions": "4.0.11-beta-*",
"System.Threading": "4.0.11-beta-*",
"System.Threading.Tasks": "4.0.11-beta-*",
"System.Threading.Thread": "4.0.0-beta-*",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-*"
} }
} }
} }

View File

@ -98,7 +98,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
var multipleDirectiveError = var multipleDirectiveError =
"Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page."; "Invalid tag helper directive '{0}'. Cannot have multiple '{0}' directives on a page.";
var invalidTagHelperPrefixValueError = var invalidTagHelperPrefixValueError =
"Invalid tag helper directive '{0}' value. '{1} is not allowed in prefix '{2}'."; "Invalid tag helper directive '{0}' value. '{1}' is not allowed in prefix '{2}'.";
return new TheoryData<Dictionary<string, IEnumerable<Type>>, // descriptorAssemblyLookups return new TheoryData<Dictionary<string, IEnumerable<Type>>, // descriptorAssemblyLookups
IEnumerable<TagHelperDirectiveDescriptor>, // directiveDescriptors IEnumerable<TagHelperDirectiveDescriptor>, // directiveDescriptors