Skip to content

Commit 73d4b6d

Browse files
author
Suhas Joshi
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent 1e766ed commit 73d4b6d

File tree

144 files changed

+489929
-448
lines changed

Some content is hidden

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

144 files changed

+489929
-448
lines changed

NuGet.Config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4+
<clear />
45
<add key="NuGet" value="https://nuget.org/api/v2/" />
56
<add key="AspNetMaster" value="https://www.myget.org/F/aspnetmaster/api/v2" />
67
</packageSources>

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

samples/MvcSample.Web/project.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@
77
"warningsAsErrors": true
88
},
99
"dependencies": {
10-
"Kestrel": "1.0.0-*",
11-
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
12-
"Microsoft.AspNet.Mvc": "6.0.0-*",
13-
"Microsoft.AspNet.Mvc.Xml": "6.0.0-*",
14-
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*",
15-
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
16-
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
17-
"Microsoft.AspNet.Session": "1.0.0-*",
18-
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
19-
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-*", "type": "build" },
20-
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" }
10+
"Kestrel": "1.0.0-beta4",
11+
"Microsoft.AspNet.Diagnostics": "1.0.0-beta4",
12+
"Microsoft.AspNet.Mvc": "6.0.0-beta4",
13+
"Microsoft.AspNet.Mvc.Xml": "6.0.0-beta4",
14+
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-beta4",
15+
"Microsoft.AspNet.Server.IIS": "1.0.0-beta4",
16+
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta4",
17+
"Microsoft.AspNet.Session": "1.0.0-beta4",
18+
"Microsoft.AspNet.StaticFiles": "1.0.0-beta4",
19+
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-beta4", "type": "build" },
20+
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-beta4" }
2121
},
2222
"frameworks": {
2323
"dnx451": {
2424
"dependencies": {
25-
"Microsoft.Framework.DependencyInjection.Autofac": "1.0.0-*",
26-
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-*"
25+
"Microsoft.Framework.DependencyInjection.Autofac": "1.0.0-beta4",
26+
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4"
2727
}
2828
},
2929
"dnxcore50": {

samples/TagHelperSample.Web/project.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"warningsAsErrors": true
88
},
99
"dependencies": {
10-
"Kestrel": "1.0.0-*",
11-
"Microsoft.Framework.Logging.Console": "1.0.0-*",
12-
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
13-
"Microsoft.AspNet.Mvc": "6.0.0-*",
14-
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-*",
15-
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
16-
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
17-
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
18-
"Microsoft.AspNet.Tooling.Razor": "1.0.0-*",
19-
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
20-
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-*", "type": "build" }
10+
"Kestrel": "1.0.0-beta4",
11+
"Microsoft.Framework.Logging.Console": "1.0.0-beta4",
12+
"Microsoft.AspNet.Diagnostics": "1.0.0-beta4",
13+
"Microsoft.AspNet.Mvc": "6.0.0-beta4",
14+
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-beta4",
15+
"Microsoft.AspNet.Server.IIS": "1.0.0-beta4",
16+
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta4",
17+
"Microsoft.AspNet.StaticFiles": "1.0.0-beta4",
18+
"Microsoft.AspNet.Tooling.Razor": "1.0.0-beta4",
19+
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-beta4" },
20+
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-beta4", "type": "build" }
2121
},
2222
"frameworks": {
2323
"dnx451": { },

src/Microsoft.AspNet.JsonPatch/project.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-beta4",
33
"dependencies": {
4-
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
5-
"Microsoft.AspNet.Mvc.Common": { "version": "6.0.0-*", "type": "build" },
6-
"Microsoft.Framework.NotNullAttribute.Internal": { "version": "1.0.0-*", "type": "build" },
7-
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-*", "type": "build" },
4+
"Microsoft.AspNet.Http.Extensions": "1.0.0-beta4",
5+
"Microsoft.AspNet.Mvc.Common": { "version": "6.0.0-beta4", "type": "build" },
6+
"Microsoft.Framework.NotNullAttribute.Internal": { "version": "1.0.0-beta4", "type": "build" },
7+
"Microsoft.Framework.PropertyHelper.Internal": { "version": "1.0.0-beta4", "type": "build" },
88
"Newtonsoft.Json": "6.0.6"
99
},
1010
"frameworks": {
1111
"dnx451": { },
1212
"dnxcore50": {
1313
"dependencies": {
14-
"Microsoft.CSharp": "4.0.0-beta-*",
15-
"System.Collections": "4.0.10-beta-*",
16-
"System.Collections.Concurrent": "4.0.10-beta-*",
17-
"System.Globalization": "4.0.10-beta-*",
18-
"System.Runtime.Extensions": "4.0.10-beta-*"
14+
"Microsoft.CSharp": "4.0.0-beta-22816",
15+
"System.Collections": "4.0.10-beta-22816",
16+
"System.Collections.Concurrent": "4.0.10-beta-22816",
17+
"System.Globalization": "4.0.10-beta-22816",
18+
"System.Runtime.Extensions": "4.0.10-beta-22816"
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)