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 Oct 16, 2015
1 parent 5fe4696 commit e03769f
Show file tree
Hide file tree
Showing 7 changed files with 15,153 additions and 58 deletions.
6 changes: 3 additions & 3 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
cd %~dp0

SETLOCAL
SET NUGET_VERSION=latest
SET NUGET_VERSION=v3.2.0
SET CACHED_NUGET=%LocalAppData%\NuGet\nuget.%NUGET_VERSION%.exe
SET BUILDCMD_KOREBUILD_VERSION=""
SET BUILDCMD_DNX_VERSION=""
SET BUILDCMD_KOREBUILD_VERSION=0.2.1-beta8
SET BUILDCMD_DNX_VERSION=1.0.0-beta8

IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
Expand Down
64 changes: 32 additions & 32 deletions src/Microsoft.Dnx.Watcher.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"version": "1.0.0-*",
"compilationOptions": { "warningsAsErrors": true },
"dependencies": {
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*",
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-*",
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-*",
"Microsoft.Dnx.Runtime.Json.Sources": {
"type": "build",
"version": "1.0.0-*"
"version": "1.0.0-beta8",
"compilationOptions": {
"warningsAsErrors": true
},
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*",
"Microsoft.Framework.FileSystemGlobbing": "1.0.0-*"
},
"frameworks": {
"dnx451": {
"frameworkAssemblies": {
"System.Collections": "",
"System.Runtime": ""
}
"dependencies": {
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8",
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8",
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8",
"Microsoft.Dnx.Runtime.Json.Sources": {
"type": "build",
"version": "1.0.0-beta8"
},
"Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8",
"Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8"
},
"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-*"
}
"frameworks": {
"dnx451": {
"frameworkAssemblies": {
"System.Collections": "",
"System.Runtime": ""
}
},
"dnxcore50": {
"dependencies": {
"System.Diagnostics.Process": "4.1.0-beta-23409",
"System.Linq": "4.0.1-beta-23409",
"System.Runtime.Extensions": "4.0.11-beta-23409",
"System.Threading.Thread": "4.0.0-beta-23409"
}
}
},
"scripts": {
"postbuild": []
}
},

"scripts": {
"postbuild": [
]
}
}
}

0 comments on commit e03769f

Please sign in to comment.