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": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"commands": {
"dotnet": "Microsoft.DotNet.Cli"
},
"dependencies": { "dependencies": {
"Microsoft.NETCore.Runtime": "1.0.1-*", "Microsoft.NETCore.Runtime": "1.0.1-*",

View file

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

View file

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

View file

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