Skip to content

Commit 7456392

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent 69199f2 commit 7456392

File tree

55 files changed

+88084
-593
lines changed

Some content is hidden

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

55 files changed

+88084
-593
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
Lines changed: 53 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,58 @@
11
{
2-
"version": "7.0.0-*",
3-
"description": "Command line utilities for Entity Framework.",
4-
"repository": {
5-
"type": "git",
6-
"url": "git://github.com/aspnet/entityframework"
7-
},
8-
"compilationOptions": {
9-
"warningsAsErrors": true
10-
},
11-
"compile": "..\\Shared\\*.cs",
12-
"exclude": "tools\\Handlers.cs",
13-
"namedResource": {
14-
"EntityFramework.Commands.Strings": "Properties/Strings.resx"
15-
},
16-
"frameworks": {
17-
"net45": {
18-
"dependencies": {
19-
"EntityFramework.Relational.Design": "7.0.0-*"
20-
}
2+
"version": "7.0.0-beta6",
3+
"description": "Command line utilities for Entity Framework.",
4+
"repository": {
5+
"type": "git",
6+
"url": "git://github.com/aspnet/entityframework"
217
},
22-
"dnx451": {
23-
"dependencies": {
24-
"EntityFramework.Relational.Design": "7.0.0-*",
25-
"Microsoft.AspNet.Hosting": "1.0.0-*",
26-
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
27-
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
28-
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*"
29-
}
8+
"compilationOptions": {
9+
"warningsAsErrors": true
3010
},
31-
"dnxcore50": {
32-
"dependencies": {
33-
"EntityFramework.Relational.Design": "7.0.0-*",
34-
"Microsoft.AspNet.Hosting": "1.0.0-*",
35-
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
36-
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
37-
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*"
38-
}
11+
"compile": "..\\Shared\\*.cs",
12+
"exclude": "tools\\Handlers.cs",
13+
"namedResource": {
14+
"EntityFramework.Commands.Strings": "Properties/Strings.resx"
3915
},
40-
"netcore50": {
41-
"bin": {
42-
"assembly": "lib\\netcore50\\_._"
43-
},
44-
"dependencies": {
45-
"EntityFramework.Relational": "7.0.0-*"
46-
}
16+
"frameworks": {
17+
"net45": {
18+
"dependencies": {
19+
"EntityFramework.Relational.Design": "7.0.0-beta6"
20+
}
21+
},
22+
"dnx451": {
23+
"dependencies": {
24+
"EntityFramework.Relational.Design": "7.0.0-beta6",
25+
"Microsoft.AspNet.Hosting": "1.0.0-beta6",
26+
"Microsoft.Framework.CommandLineUtils.Sources": {
27+
"version": "1.0.0-beta6",
28+
"type": "build"
29+
},
30+
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6",
31+
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6"
32+
}
33+
},
34+
"dnxcore50": {
35+
"dependencies": {
36+
"EntityFramework.Relational.Design": "7.0.0-beta6",
37+
"Microsoft.AspNet.Hosting": "1.0.0-beta6",
38+
"Microsoft.Framework.CommandLineUtils.Sources": {
39+
"version": "1.0.0-beta6",
40+
"type": "build"
41+
},
42+
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6",
43+
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6"
44+
}
45+
},
46+
"netcore50": {
47+
"bin": {
48+
"assembly": "lib\\netcore50\\_._"
49+
},
50+
"dependencies": {
51+
"EntityFramework.Relational": "7.0.0-beta6"
52+
}
53+
}
54+
},
55+
"commands": {
56+
"ef": "EntityFramework.Commands"
4757
}
48-
},
49-
"commands": {
50-
"ef": "EntityFramework.Commands"
51-
}
52-
}
58+
}

0 commit comments

Comments
 (0)