Skip to content
This repository has been archived by the owner on Nov 7, 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 Jul 28, 2015
1 parent 91b0516 commit d1f83d8
Show file tree
Hide file tree
Showing 5 changed files with 1,912 additions and 45 deletions.
12 changes: 10 additions & 2 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul

:restore
IF EXIST packages\KoreBuild goto run
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
IF DEFINED BUILDCMD_RELEASE (
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
) ELSE (
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
)
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion

IF "%SKIP_DNX_INSTALL%"=="1" goto run
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
IF DEFINED BUILDCMD_RELEASE (
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
) ELSE (
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
)
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86

:run
Expand Down
63 changes: 33 additions & 30 deletions src/Microsoft.Framework.OptionsModel/project.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.Framework.Configuration.Abstractions": "1.0.0-*",
"Microsoft.Framework.Configuration.Binder": "1.0.0-*",
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }
},
"repository": {
"type": "git",
"url": "https://github.com/aspnet/options"
},
"frameworks": {
"net45": { },
"dnx451": { },
"dotnet": {
"dependencies": {
"System.ComponentModel": "4.0.0-*",
"System.Diagnostics.Debug": "4.0.10-*",
"System.Globalization": "4.0.10-*",
"System.Linq": "4.0.0-*",
"System.Linq.Expressions": "4.0.10-*",
"System.Reflection": "4.0.10-*",
"System.Reflection.TypeExtensions": "4.0.0-beta-*",
"System.Resources.ResourceManager": "4.0.0-*",
"System.Runtime": "4.0.20-*",
"System.Runtime.Extensions": "4.0.10-beta-*",
"System.Threading": "4.0.10-beta-*"
}
"version": "1.0.0-beta6",
"dependencies": {
"Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6",
"Microsoft.Framework.Configuration.Binder": "1.0.0-beta6",
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6",
"Microsoft.Framework.NotNullAttribute.Sources": {
"type": "build",
"version": "1.0.0-beta6"
}
},
"repository": {
"type": "git",
"url": "https://github.com/aspnet/options"
},
"frameworks": {
"net45": {},
"dnx451": {},
"dotnet": {
"dependencies": {
"System.ComponentModel": "4.0.0-beta-23109",
"System.Diagnostics.Debug": "4.0.10-beta-23109",
"System.Globalization": "4.0.10-beta-23109",
"System.Linq": "4.0.0-beta-23109",
"System.Linq.Expressions": "4.0.10-beta-23109",
"System.Reflection": "4.0.10-beta-23109",
"System.Reflection.TypeExtensions": "4.0.0-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.Extensions": "4.0.10-beta-23109",
"System.Threading": "4.0.10-beta-23109"
}
}
}
}
}
}
Loading

0 comments on commit d1f83d8

Please sign in to comment.