Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
Updating json files to pin versions and build.cmd to pin KoreBuild an…
Browse files Browse the repository at this point in the history
…d DNX
  • Loading branch information
pranavkm committed Nov 18, 2015
1 parent b336967 commit 52d13cf
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 58 deletions.
9 changes: 7 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"projects": [ "src"]
}
"projects": [
"src"
],
"sdk": {
"version": "1.0.0-rc1-final"
}
}
24 changes: 12 additions & 12 deletions src/Microsoft.Dnx.Watcher.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"compilationOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*",
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final",
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
"Microsoft.Extensions.JsonParser.Sources": {
"type": "build",
"version": "1.0.0-*"
"version": "1.0.0-rc1-final"
},
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-*"
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final",
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": {
Expand All @@ -24,11 +24,11 @@
},
"dnxcore50": {
"dependencies": {
"System.Diagnostics.Process": "4.1.0-beta-*",
"System.Linq": "4.0.1-beta-*",
"System.Runtime.Extensions": "4.0.11-beta-*",
"System.Threading.Thread": "4.0.0-beta-*"
"System.Diagnostics.Process": "4.1.0-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Runtime.Extensions": "4.0.11-beta-23516",
"System.Threading.Thread": "4.0.0-beta-23516"
}
}
}
}
}
50 changes: 25 additions & 25 deletions src/Microsoft.Dnx.Watcher/project.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"keyFile": "../../tools/Key.snk"
"version": "1.0.0-rc1-final",
"compilationOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.Dnx.Watcher.Core": "1.0.0-rc1-final",
"Microsoft.Extensions.CommandLineUtils.Sources": {
"version": "1.0.0-rc1-final",
"type": "build"
},
"dependencies": {
"Microsoft.Dnx.Watcher.Core": "1.0.0-*",
"Microsoft.Extensions.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
"Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
},

"commands": {
"dnx-watch": "Microsoft.Dnx.Watcher"
},

"scripts": {
"postbuild": [
]
}
}
"Microsoft.Extensions.Logging": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
},
"commands": {
"dnx-watch": "Microsoft.Dnx.Watcher"
},
"scripts": {
"postbuild": []
}
}
37 changes: 18 additions & 19 deletions test/Microsoft.Dnx.Watcher.Tests/project.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"compilationOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
"Microsoft.Dnx.Watcher": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
},
"commands": {
"test": "xunit.runner.aspnet"
}
}

{
"compilationOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
"Microsoft.Dnx.Watcher": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
},
"commands": {
"test": "xunit.runner.aspnet"
}
}

0 comments on commit 52d13cf

Please sign in to comment.