Skip to content

Commit d10f6a4

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent 6fed9ad commit d10f6a4

53 files changed

Lines changed: 56067 additions & 103 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

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/EntityFramework.Commands/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"version": "7.0.0-*",
2+
"version": "7.0.0-beta5",
33
"description": "Command line utilities for Entity Framework.",
44
"compilationOptions": {
55
"warningsAsErrors": true
66
},
77
"dependencies": {
8-
"EntityFramework.Relational.Design": "7.0.0-*",
8+
"EntityFramework.Relational.Design": "7.0.0-beta5",
99
},
1010
"compile": "..\\Shared\\*.cs",
1111
"exclude": "tools\\Handlers.cs",
@@ -16,14 +16,14 @@
1616
"net45": { },
1717
"dnx451": {
1818
"dependencies": {
19-
"Microsoft.AspNet.Hosting": "1.0.0-*",
20-
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }
19+
"Microsoft.AspNet.Hosting": "1.0.0-beta5",
20+
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-beta5", "type": "build" }
2121
}
2222
},
2323
"dnxcore50": {
2424
"dependencies": {
25-
"Microsoft.AspNet.Hosting": "1.0.0-*",
26-
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }
25+
"Microsoft.AspNet.Hosting": "1.0.0-beta5",
26+
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-beta5", "type": "build" }
2727
}
2828
},
2929
"netcore50": {

0 commit comments

Comments
 (0)