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

Commit 5be8d15

Browse files
committed
Updating json files to pin versions and build.cmd to pin KoreBuild and DNX
1 parent fb3e7f0 commit 5be8d15

File tree

23 files changed

+196
-187
lines changed

23 files changed

+196
-187
lines changed

global.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"projects": ["src"]
3-
}
2+
"projects": [
3+
"src"
4+
],
5+
"sdk": {
6+
"version": "1.0.0-rc1-final"
7+
}
8+
}

samples/SampleApp/project.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
{
1+
{
22
"version": "1.0.0-*",
3-
43
"dependencies": {
5-
"Microsoft.AspNet.Http": "1.0.0-*"
4+
"Microsoft.AspNet.Http": "1.0.0-rc1-final"
65
},
7-
86
"commands": {
97
"SampleApp": "SampleApp"
108
},
11-
129
"frameworks": {
13-
"dnx451": { }
10+
"dnx451": {}
1411
}
15-
}
12+
}

src/Microsoft.AspNet.Html.Abstractions/project.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 HTML content interface.",
44
"repository": {
55
"type": "git",
@@ -10,13 +10,13 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
13+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
1414
},
1515
"frameworks": {
1616
"net451": {},
1717
"dotnet5.4": {
1818
"dependencies": {
19-
"System.Resources.ResourceManager": "4.0.1-beta-*"
19+
"System.Resources.ResourceManager": "4.0.1-beta-23516"
2020
}
2121
}
2222
}

src/Microsoft.AspNet.Http.Abstractions/project.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 HTTP object model. HttpContext and family.",
44
"repository": {
55
"type": "git",
@@ -10,32 +10,32 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.AspNet.Http.Features": "1.0.0-*",
13+
"Microsoft.AspNet.Http.Features": "1.0.0-rc1-final",
1414
"Microsoft.Extensions.ActivatorUtilities.Sources": {
1515
"type": "build",
16-
"version": "1.0.0-*"
16+
"version": "1.0.0-rc1-final"
1717
},
18-
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
18+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
1919
},
2020
"frameworks": {
2121
"net451": {},
2222
"dotnet5.4": {
2323
"dependencies": {
24-
"System.Collections": "4.0.11-beta-*",
25-
"System.Diagnostics.Tools": "4.0.1-beta-*",
26-
"System.Globalization": "4.0.11-beta-*",
27-
"System.Globalization.Extensions": "4.0.1-beta-*",
28-
"System.Linq": "4.0.1-beta-*",
29-
"System.Linq.Expressions": "4.0.11-beta-*",
30-
"System.Net.Primitives": "4.0.11-beta-*",
31-
"System.Net.WebSockets": "4.0.0-beta-*",
32-
"System.Reflection.TypeExtensions": "4.0.1-beta-*",
33-
"System.Runtime": "4.0.21-beta-*",
34-
"System.Runtime.InteropServices": "4.0.21-beta-*",
35-
"System.Security.Claims": "4.0.1-beta-*",
36-
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-*",
37-
"System.Security.Principal": "4.0.1-beta-*",
38-
"System.Threading.Tasks": "4.0.11-beta-*"
24+
"System.Collections": "4.0.11-beta-23516",
25+
"System.Diagnostics.Tools": "4.0.1-beta-23516",
26+
"System.Globalization": "4.0.11-beta-23516",
27+
"System.Globalization.Extensions": "4.0.1-beta-23516",
28+
"System.Linq": "4.0.1-beta-23516",
29+
"System.Linq.Expressions": "4.0.11-beta-23516",
30+
"System.Net.Primitives": "4.0.11-beta-23516",
31+
"System.Net.WebSockets": "4.0.0-beta-23516",
32+
"System.Reflection.TypeExtensions": "4.1.0-beta-23516",
33+
"System.Runtime": "4.0.21-beta-23516",
34+
"System.Runtime.InteropServices": "4.0.21-beta-23516",
35+
"System.Security.Claims": "4.0.1-beta-23516",
36+
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516",
37+
"System.Security.Principal": "4.0.1-beta-23516",
38+
"System.Threading.Tasks": "4.0.11-beta-23516"
3939
}
4040
}
4141
}

src/Microsoft.AspNet.Http.Extensions/project.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 common extension methods for HTTP abstractions and IApplicationBuilder.",
44
"repository": {
55
"type": "git",
@@ -10,17 +10,17 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
14-
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*",
15-
"Microsoft.Net.Http.Headers": "1.0.0-*"
13+
"Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final",
14+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final",
15+
"Microsoft.Net.Http.Headers": "1.0.0-rc1-final"
1616
},
1717
"frameworks": {
1818
"net451": {},
1919
"dotnet5.4": {
2020
"dependencies": {
21-
"System.IO.FileSystem": "4.0.1-beta-*",
22-
"System.Runtime": "4.0.21-beta-*",
23-
"System.Resources.ResourceManager": "4.0.1-beta-*"
21+
"System.IO.FileSystem": "4.0.1-beta-23516",
22+
"System.Runtime": "4.0.21-beta-23516",
23+
"System.Resources.ResourceManager": "4.0.1-beta-23516"
2424
}
2525
}
2626
}

src/Microsoft.AspNet.Http.Features/project.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 HTTP feature interface definitions.",
44
"repository": {
55
"type": "git",
@@ -10,20 +10,20 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.Extensions.Primitives": "1.0.0-*"
13+
"Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
1414
},
1515
"frameworks": {
1616
"net451": {},
1717
"dotnet5.4": {
1818
"dependencies": {
19-
"System.Collections": "4.0.11-beta-*",
20-
"System.Linq": "4.0.1-beta-*",
21-
"System.Net.Primitives": "4.0.11-beta-*",
22-
"System.Net.WebSockets": "4.0.0-beta-*",
23-
"System.Runtime.Extensions": "4.0.11-beta-*",
24-
"System.Security.Claims": "4.0.1-beta-*",
25-
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-*",
26-
"System.Security.Principal": "4.0.1-beta-*"
19+
"System.Collections": "4.0.11-beta-23516",
20+
"System.Linq": "4.0.1-beta-23516",
21+
"System.Net.Primitives": "4.0.11-beta-23516",
22+
"System.Net.WebSockets": "4.0.0-beta-23516",
23+
"System.Runtime.Extensions": "4.0.11-beta-23516",
24+
"System.Security.Claims": "4.0.1-beta-23516",
25+
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516",
26+
"System.Security.Principal": "4.0.1-beta-23516"
2727
}
2828
}
2929
}

src/Microsoft.AspNet.Http/project.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 HTTP feature implementations.",
44
"repository": {
55
"type": "git",
@@ -11,16 +11,16 @@
1111
"keyFile": "../../tools/Key.snk"
1212
},
1313
"dependencies": {
14-
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
15-
"Microsoft.AspNet.WebUtilities": "1.0.0-*",
16-
"Microsoft.Net.Http.Headers": "1.0.0-*"
14+
"Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final",
15+
"Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final",
16+
"Microsoft.Net.Http.Headers": "1.0.0-rc1-final"
1717
},
1818
"frameworks": {
1919
"net451": {},
2020
"dotnet5.4": {
2121
"dependencies": {
22-
"System.Diagnostics.Debug": "4.0.11-beta-*",
23-
"System.Text.Encoding": "4.0.11-beta-*"
22+
"System.Diagnostics.Debug": "4.0.11-beta-23516",
23+
"System.Text.Encoding": "4.0.11-beta-23516"
2424
}
2525
}
2626
}

src/Microsoft.AspNet.Owin/project.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 component for running OWIN middleware.",
44
"repository": {
55
"type": "git",
@@ -10,26 +10,26 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.AspNet.Http": "1.0.0-*"
13+
"Microsoft.AspNet.Http": "1.0.0-rc1-final"
1414
},
1515
"frameworks": {
1616
"net451": {},
1717
"dotnet5.4": {
1818
"dependencies": {
19-
"System.Collections": "4.0.11-beta-*",
20-
"System.ComponentModel": "4.0.1-beta-*",
21-
"System.Diagnostics.Tools": "4.0.1-beta-*",
22-
"System.Globalization": "4.0.11-beta-*",
23-
"System.IO": "4.0.11-beta-*",
24-
"System.Linq": "4.0.1-beta-*",
25-
"System.Net.Primitives": "4.0.11-beta-*",
26-
"System.Runtime": "4.0.21-beta-*",
27-
"System.Runtime.Extensions": "4.0.11-beta-*",
28-
"System.Runtime.InteropServices": "4.0.21-beta-*",
29-
"System.Security.Claims": "4.0.1-beta-*",
30-
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-*",
31-
"System.Security.Principal": "4.0.1-beta-*",
32-
"System.Threading.Tasks": "4.0.11-beta-*"
19+
"System.Collections": "4.0.11-beta-23516",
20+
"System.ComponentModel": "4.0.1-beta-23516",
21+
"System.Diagnostics.Tools": "4.0.1-beta-23516",
22+
"System.Globalization": "4.0.11-beta-23516",
23+
"System.IO": "4.0.11-beta-23516",
24+
"System.Linq": "4.0.1-beta-23516",
25+
"System.Net.Primitives": "4.0.11-beta-23516",
26+
"System.Runtime": "4.0.21-beta-23516",
27+
"System.Runtime.Extensions": "4.0.11-beta-23516",
28+
"System.Runtime.InteropServices": "4.0.21-beta-23516",
29+
"System.Security.Claims": "4.0.1-beta-23516",
30+
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516",
31+
"System.Security.Principal": "4.0.1-beta-23516",
32+
"System.Threading.Tasks": "4.0.11-beta-23516"
3333
}
3434
}
3535
}

src/Microsoft.AspNet.WebUtilities/project.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 common helper methods.",
44
"repository": {
55
"type": "git",
@@ -10,19 +10,19 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.Extensions.Primitives": "1.0.0-*",
14-
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
13+
"Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
14+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
1515
},
1616
"frameworks": {
1717
"net451": {},
1818
"dotnet5.4": {
1919
"dependencies": {
20-
"System.Collections": "4.0.11-beta-*",
21-
"System.Diagnostics.Debug": "4.0.11-beta-*",
22-
"System.IO": "4.0.11-beta-*",
23-
"System.IO.FileSystem": "4.0.1-beta-*",
24-
"System.Runtime": "4.0.21-beta-*",
25-
"System.Runtime.Extensions": "4.0.11-beta-*"
20+
"System.Collections": "4.0.11-beta-23516",
21+
"System.Diagnostics.Debug": "4.0.11-beta-23516",
22+
"System.IO": "4.0.11-beta-23516",
23+
"System.IO.FileSystem": "4.0.1-beta-23516",
24+
"System.Runtime": "4.0.21-beta-23516",
25+
"System.Runtime.Extensions": "4.0.11-beta-23516"
2626
}
2727
}
2828
}

src/Microsoft.Extensions.BufferedHtmlContent.Sources/project.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"compilationOptions": {
44
"warningsAsErrors": true,
55
"keyFile": "../../tools/Key.snk"
@@ -10,8 +10,8 @@
1010
"net451": {},
1111
"dotnet5.4": {
1212
"dependencies": {
13-
"System.Resources.ResourceManager": "4.0.1-beta-*",
14-
"System.Runtime": "4.0.21-beta-*"
13+
"System.Resources.ResourceManager": "4.0.1-beta-23516",
14+
"System.Runtime": "4.0.21-beta-23516"
1515
}
1616
}
1717
}

src/Microsoft.Extensions.WebEncoders.Core/project.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "Contains core encoders for HTML, JavaScript strings, and URLs.",
44
"repository": {
55
"type": "git",
@@ -14,13 +14,13 @@
1414
"net451": {},
1515
"dotnet5.4": {
1616
"dependencies": {
17-
"System.ComponentModel": "4.0.1-beta-*",
18-
"System.Diagnostics.Debug": "4.0.11-beta-*",
19-
"System.IO": "4.0.11-beta-*",
20-
"System.Reflection": "4.0.10-*",
21-
"System.Resources.ResourceManager": "4.0.1-beta-*",
22-
"System.Runtime.Extensions": "4.0.11-beta-*",
23-
"System.Threading": "4.0.11-beta-*"
17+
"System.ComponentModel": "4.0.1-beta-23516",
18+
"System.Diagnostics.Debug": "4.0.11-beta-23516",
19+
"System.IO": "4.0.11-beta-23516",
20+
"System.Reflection": "4.1.0-beta-23516",
21+
"System.Resources.ResourceManager": "4.0.1-beta-23516",
22+
"System.Runtime.Extensions": "4.0.11-beta-23516",
23+
"System.Threading": "4.0.11-beta-23516"
2424
}
2525
}
2626
}

src/Microsoft.Extensions.WebEncoders/project.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "Contains registration and configuration APIs for the core framework encoders.",
44
"repository": {
55
"type": "git",
@@ -10,9 +10,9 @@
1010
"keyFile": "../../tools/Key.snk"
1111
},
1212
"dependencies": {
13-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
14-
"Microsoft.Extensions.OptionsModel": "1.0.0-*",
15-
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-*"
13+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final",
14+
"Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final",
15+
"Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
1616
},
1717
"frameworks": {
1818
"net451": {},

src/Microsoft.Net.Http.Headers/project.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 HTTP header implementations.",
44
"repository": {
55
"type": "git",
@@ -13,13 +13,13 @@
1313
"net451": {},
1414
"dotnet5.4": {
1515
"dependencies": {
16-
"System.Collections": "4.0.11-beta-*",
17-
"System.Diagnostics.Contracts": "4.0.1-beta-*",
18-
"System.Globalization": "4.0.11-beta-*",
19-
"System.Globalization.Extensions": "4.0.1-beta-*",
20-
"System.Linq": "4.0.1-beta-*",
21-
"System.Text.Encoding": "4.0.11-beta-*",
22-
"System.Runtime": "4.0.21-beta-*"
16+
"System.Collections": "4.0.11-beta-23516",
17+
"System.Diagnostics.Contracts": "4.0.1-beta-23516",
18+
"System.Globalization": "4.0.11-beta-23516",
19+
"System.Globalization.Extensions": "4.0.1-beta-23516",
20+
"System.Linq": "4.0.1-beta-23516",
21+
"System.Text.Encoding": "4.0.11-beta-23516",
22+
"System.Runtime": "4.0.21-beta-23516"
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)