Removed the commands from the project.json files

This commit is contained in:
David Fowler 2015-10-18 00:50:37 -07:00
parent ee0d2519e6
commit 586dbde67f
4 changed files with 23 additions and 26 deletions

View file

@ -4,9 +4,6 @@
"compilationOptions": {
"emitEntryPoint": true
},
"commands": {
"dotnet": "Microsoft.DotNet.Cli"
},
"dependencies": {
"Microsoft.NETCore.Runtime": "1.0.1-*",

View file

@ -4,9 +4,6 @@
"compilationOptions": {
"emitEntryPoint": true
},
"commands": {
"dotnet-compile": "Microsoft.DotNet.Tools.Compiler"
},
"dependencies": {
"Microsoft.NETCore.TestHost": "1.0.0-*",
"Microsoft.NETCore.Runtime": "1.0.1-*",

View file

@ -4,9 +4,6 @@
"compilationOptions": {
"emitEntryPoint": true
},
"commands": {
"dotnet-publish": "Microsoft.DotNet.Tools.Publish"
},
"dependencies": {
"Microsoft.NETCore.Runtime": "1.0.1-*",
"System.Console": "4.0.0-*",

View file

@ -1,24 +1,30 @@
{
"version": "1.0.0-*",
"description": "Types to model a .NET Project",
"version": "1.0.0-*",
"description": "Types to model a .NET Project",
"dependencies": {
"Microsoft.CSharp": "4.0.1-*",
"System.Collections": "4.0.11-*",
"System.Linq": "4.0.1-*",
"System.Threading.Thread": "4.0.0-*",
"System.Runtime.Loader": "4.0.0-*",
"System.Dynamic.Runtime": "4.0.11-*",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0-*",
"dependencies": {
"Microsoft.CSharp": "4.0.1-*",
"System.Collections": "4.0.11-*",
"System.Linq": "4.0.1-*",
"System.Threading.Thread": "4.0.0-*",
"System.Runtime.Loader": "4.0.0-*",
"System.Dynamic.Runtime": "4.0.11-*",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0-*",
"NuGet.Packaging": "3.2.0",
"NuGet.Packaging": "3.2.0",
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-*",
"Microsoft.Extensions.JsonParser.Sources": { "type": "build", "version": "1.0.0-*" },
"Microsoft.Extensions.HashCodeCombiner.Sources": { "type": "build", "version": "1.0.0-*" }
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-*",
"Microsoft.Extensions.JsonParser.Sources": {
"type": "build",
"version": "1.0.0-*"
},
"frameworks": {
"dnxcore50": { }
"Microsoft.Extensions.HashCodeCombiner.Sources": {
"type": "build",
"version": "1.0.0-*"
}
},
"frameworks": {
"dnxcore50": { }
}
}