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

Commit 4ba1ca6

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent 9959540 commit 4ba1ca6

File tree

5 files changed

+1670
-22
lines changed

5 files changed

+1670
-22
lines changed

build.cmd

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
1616

1717
:restore
1818
IF EXIST packages\KoreBuild goto run
19-
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
19+
IF DEFINED BUILDCMD_RELEASE (
20+
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
21+
) ELSE (
22+
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
23+
)
2024
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
2125

2226
IF "%SKIP_DNX_INSTALL%"=="1" goto run
23-
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
27+
IF DEFINED BUILDCMD_RELEASE (
28+
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
29+
) ELSE (
30+
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
31+
)
2432
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86
2533

2634
:run

src/Microsoft.Framework.OptionsModel/project.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-beta5",
33
"dependencies": {
4-
"Microsoft.Framework.Configuration.Abstractions": "1.0.0-*",
5-
"Microsoft.Framework.Configuration.Binder": "1.0.0-*",
6-
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
7-
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }
4+
"Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5",
5+
"Microsoft.Framework.Configuration.Binder": "1.0.0-beta5",
6+
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5",
7+
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }
88
},
99
"frameworks": {
1010
"net45": { },
1111
"dnx451": { },
1212
"dotnet": {
1313
"dependencies": {
14-
"System.ComponentModel": "4.0.0-*",
15-
"System.Diagnostics.Debug": "4.0.10-*",
16-
"System.Globalization": "4.0.10-*",
17-
"System.Linq": "4.0.0-*",
18-
"System.Linq.Expressions": "4.0.10-*",
19-
"System.Reflection": "4.0.10-*",
20-
"System.Reflection.TypeExtensions": "4.0.0-beta-*",
21-
"System.Resources.ResourceManager": "4.0.0-*",
22-
"System.Runtime": "4.0.20-*",
23-
"System.Runtime.Extensions": "4.0.10-beta-*",
24-
"System.Threading": "4.0.10-beta-*"
14+
"System.ComponentModel": "4.0.0-beta-23019",
15+
"System.Diagnostics.Debug": "4.0.10-beta-23019",
16+
"System.Globalization": "4.0.10-beta-23019",
17+
"System.Linq": "4.0.0-beta-23019",
18+
"System.Linq.Expressions": "4.0.10-beta-23019",
19+
"System.Reflection": "4.0.10-beta-23019",
20+
"System.Reflection.TypeExtensions": "4.0.0-beta-23019",
21+
"System.Resources.ResourceManager": "4.0.0-beta-23019",
22+
"System.Runtime": "4.0.20-beta-23019",
23+
"System.Runtime.Extensions": "4.0.10-beta-23019",
24+
"System.Threading": "4.0.10-beta-23019"
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)