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

Commit bc55f74

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

File tree

14 files changed

+166
-155
lines changed

14 files changed

+166
-155
lines changed

global.json

Lines changed: 7 additions & 2 deletions
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+
}

src/Microsoft.AspNet.Cryptography.Internal/project.json

Lines changed: 6 additions & 6 deletions
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": "Infrastructure for ASP.NET 5 cryptographic packages. Developers should not reference this package.",
44
"repository": {
55
"type": "git",
@@ -10,11 +10,11 @@
1010
"net451": {},
1111
"dotnet5.4": {
1212
"dependencies": {
13-
"System.Diagnostics.Debug": "4.0.11-beta-*",
14-
"System.Runtime.Handles": "4.0.1-beta-*",
15-
"System.Runtime.InteropServices": "4.0.21-beta-*",
16-
"System.Security.Cryptography.Primitives": "4.0.0-beta-*",
17-
"System.Threading": "4.0.11-beta-*"
13+
"System.Diagnostics.Debug": "4.0.11-beta-23516",
14+
"System.Runtime.Handles": "4.0.1-beta-23516",
15+
"System.Runtime.InteropServices": "4.0.21-beta-23516",
16+
"System.Security.Cryptography.Primitives": "4.0.0-beta-23516",
17+
"System.Threading": "4.0.11-beta-23516"
1818
}
1919
}
2020
},

src/Microsoft.AspNet.Cryptography.KeyDerivation/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 utilities for key derivation.",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/aspnet/dataprotection"
77
},
88
"dependencies": {
9-
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-*"
9+
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-rc1-final"
1010
},
1111
"frameworks": {
1212
"net451": {},
1313
"dotnet5.4": {
1414
"dependencies": {
15-
"System.Runtime.Extensions": "4.0.11-beta-*",
16-
"System.Security.Cryptography.Algorithms": "4.0.0-beta-*",
17-
"System.Text.Encoding.Extensions": "4.0.11-beta-*"
15+
"System.Runtime.Extensions": "4.0.11-beta-23516",
16+
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
17+
"System.Text.Encoding.Extensions": "4.0.11-beta-23516"
1818
}
1919
}
2020
},

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

Lines changed: 9 additions & 9 deletions
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 the core IDataProtector and IDataProtectionProvider abstractions for ASP.NET 5 Data Protection.",
44
"repository": {
55
"type": "git",
@@ -8,20 +8,20 @@
88
"dependencies": {
99
"Microsoft.AspNet.DataProtection.Sources": {
1010
"type": "build",
11-
"version": ""
11+
"version": "1.0.0-rc1-final"
1212
},
13-
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
13+
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
1414
},
1515
"frameworks": {
1616
"net451": {},
1717
"dotnet5.4": {
1818
"dependencies": {
19-
"System.ComponentModel": "4.0.1-beta-*",
20-
"System.Diagnostics.Debug": "4.0.11-beta-*",
21-
"System.Reflection": "4.0.11-beta-*",
22-
"System.Runtime.Extensions": "4.0.11-beta-*",
23-
"System.Security.Cryptography.Primitives": "4.0.0-beta-*",
24-
"System.Text.Encoding.Extensions": "4.0.11-beta-*"
19+
"System.ComponentModel": "4.0.1-beta-23516",
20+
"System.Diagnostics.Debug": "4.0.11-beta-23516",
21+
"System.Reflection": "4.1.0-beta-23516",
22+
"System.Runtime.Extensions": "4.0.11-beta-23516",
23+
"System.Security.Cryptography.Primitives": "4.0.0-beta-23516",
24+
"System.Text.Encoding.Extensions": "4.0.11-beta-23516"
2525
}
2626
}
2727
},

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "Additional APIs for ASP.NET 5 data protection.",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/aspnet/dataprotection"
77
},
88
"dependencies": {
9-
"Microsoft.AspNet.DataProtection": "1.0.0-*",
9+
"Microsoft.AspNet.DataProtection": "1.0.0-rc1-final",
1010
"Microsoft.AspNet.DataProtection.Sources": {
1111
"type": "build",
12-
"version": ""
12+
"version": "1.0.0-rc1-final"
1313
},
14-
"Microsoft.Extensions.DependencyInjection": "1.0.0-*"
14+
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final"
1515
},
1616
"frameworks": {
1717
"net451": {},

src/Microsoft.AspNet.DataProtection.Sources/project.json

Lines changed: 3 additions & 3 deletions
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 Data Protection shared code.",
44
"repository": {
55
"type": "git",
@@ -10,8 +10,8 @@
1010
"net451": {},
1111
"dotnet5.4": {
1212
"dependencies": {
13-
"System.Security.Cryptography.Primitives": "4.0.0-beta-*",
14-
"System.Text.Encoding.Extensions": "4.0.11-beta-*"
13+
"System.Security.Cryptography.Primitives": "4.0.0-beta-23516",
14+
"System.Text.Encoding.Extensions": "4.0.11-beta-23516"
1515
}
1616
}
1717
},

src/Microsoft.AspNet.DataProtection.SystemWeb/project.json

Lines changed: 3 additions & 3 deletions
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": "A component to allow the ASP.NET 5 DataProtection stack to work with the ASP.NET 4.x <machineKey> element.",
44
"repository": {
55
"type": "git",
@@ -8,8 +8,8 @@
88
"frameworks": {
99
"net451": {
1010
"dependencies": {
11-
"Microsoft.AspNet.DataProtection": "1.0.0-*",
12-
"Microsoft.Extensions.DependencyInjection": "1.0.0-*"
11+
"Microsoft.AspNet.DataProtection": "1.0.0-rc1-final",
12+
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final"
1313
},
1414
"frameworkAssemblies": {
1515
"System.Configuration": "4.0.0.0",

src/Microsoft.AspNet.DataProtection/project.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc1-final",
33
"description": "ASP.NET 5 logic to protect and unprotect data, similar to DPAPI.",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/aspnet/dataprotection"
77
},
88
"dependencies": {
9-
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-*",
10-
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-*",
9+
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-rc1-final",
10+
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-rc1-final",
1111
"Microsoft.AspNet.DataProtection.Sources": {
1212
"type": "build",
13-
"version": ""
13+
"version": "1.0.0-rc1-final"
1414
},
15-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
16-
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
17-
"Microsoft.Extensions.OptionsModel": "1.0.0-*"
15+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final",
16+
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final",
17+
"Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final"
1818
},
1919
"frameworks": {
2020
"net451": {
@@ -27,14 +27,14 @@
2727
},
2828
"dotnet5.4": {
2929
"dependencies": {
30-
"Microsoft.Win32.Registry": "4.0.0-beta-*",
31-
"System.Linq": "4.0.1-beta-*",
32-
"System.Reflection.Extensions": "4.0.1-beta-*",
33-
"System.Reflection.TypeExtensions": "4.0.1-beta-*",
34-
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-*",
35-
"System.Security.Claims": "4.0.1-beta-*",
36-
"System.Security.Principal.Windows": "4.0.0-beta-*",
37-
"System.Xml.XDocument": "4.0.11-beta-*"
30+
"Microsoft.Win32.Registry": "4.0.0-beta-23516",
31+
"System.Linq": "4.0.1-beta-23516",
32+
"System.Reflection.Extensions": "4.0.1-beta-23516",
33+
"System.Reflection.TypeExtensions": "4.1.0-beta-23516",
34+
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516",
35+
"System.Security.Claims": "4.0.1-beta-23516",
36+
"System.Security.Principal.Windows": "4.0.0-beta-23516",
37+
"System.Xml.XDocument": "4.0.11-beta-23516"
3838
}
3939
}
4040
},
Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
{
2-
"dependencies": {
3-
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-*",
4-
"Microsoft.AspNet.DataProtection.Test.Shared": { "type": "build", "version": "" },
5-
"Microsoft.AspNet.Testing": "1.0.0-*",
6-
"xunit.runner.aspnet": "2.0.0-aspnet-*"
2+
"dependencies": {
3+
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-rc1-final",
4+
"Microsoft.AspNet.DataProtection.Test.Shared": {
5+
"type": "build",
6+
"version": ""
77
},
8-
"frameworks": {
9-
"dnx451": { },
10-
"dnxcore50": { }
11-
},
12-
"commands": {
13-
"test": "xunit.runner.aspnet"
14-
},
15-
"compilationOptions": {
16-
"allowUnsafe": true,
17-
"keyFile": "../../tools/Key.snk"
18-
}
19-
}
8+
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
9+
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
10+
},
11+
"frameworks": {
12+
"dnx451": {},
13+
"dnxcore50": {}
14+
},
15+
"commands": {
16+
"test": "xunit.runner.aspnet"
17+
},
18+
"compilationOptions": {
19+
"allowUnsafe": true,
20+
"keyFile": "../../tools/Key.snk"
21+
}
22+
}
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"dependencies": {
3-
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-*",
4-
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-*",
5-
"Microsoft.AspNet.DataProtection.Test.Shared": "",
6-
"Microsoft.AspNet.Testing": "1.0.0-*",
7-
"Moq": "4.2.1312.1622",
8-
"xunit.runner.aspnet": "2.0.0-aspnet-*"
9-
},
10-
"frameworks": {
11-
"dnx451": { }
12-
},
13-
"commands": {
14-
"test": "xunit.runner.aspnet"
15-
},
16-
"compilationOptions": {
17-
"allowUnsafe": true,
18-
"keyFile": "../../tools/Key.snk"
19-
}
20-
}
2+
"dependencies": {
3+
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-rc1-final",
4+
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-rc1-final",
5+
"Microsoft.AspNet.DataProtection.Test.Shared": "",
6+
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
7+
"Moq": "4.2.1312.1622",
8+
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
9+
},
10+
"frameworks": {
11+
"dnx451": {}
12+
},
13+
"commands": {
14+
"test": "xunit.runner.aspnet"
15+
},
16+
"compilationOptions": {
17+
"allowUnsafe": true,
18+
"keyFile": "../../tools/Key.snk"
19+
}
20+
}
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"dependencies": {
3-
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-*",
4-
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-*",
5-
"Microsoft.AspNet.Testing": "1.0.0-*",
6-
"Moq": "4.2.1312.1622",
7-
"xunit.runner.aspnet": "2.0.0-aspnet-*"
8-
},
9-
"frameworks": {
10-
"dnx451": { }
11-
},
12-
"commands": {
13-
"test": "xunit.runner.aspnet"
14-
},
15-
"compile": "..\\common\\**\\*.cs",
16-
"compilationOptions": {
17-
"warningsAsErrors": true,
18-
"keyFile": "../../tools/Key.snk"
19-
}
20-
}
2+
"dependencies": {
3+
"Microsoft.AspNet.Cryptography.Internal": "1.0.0-rc1-final",
4+
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-rc1-final",
5+
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
6+
"Moq": "4.2.1312.1622",
7+
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
8+
},
9+
"frameworks": {
10+
"dnx451": {}
11+
},
12+
"commands": {
13+
"test": "xunit.runner.aspnet"
14+
},
15+
"compile": "..\\common\\**\\*.cs",
16+
"compilationOptions": {
17+
"warningsAsErrors": true,
18+
"keyFile": "../../tools/Key.snk"
19+
}
20+
}
Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"dependencies": {
3-
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-*",
4-
"Microsoft.AspNet.DataProtection.Extensions": "1.0.0-*",
5-
"Microsoft.AspNet.DataProtection.Test.Shared": { "type": "build", "version": "" },
6-
"Microsoft.AspNet.Testing": "1.0.0-*",
7-
"Moq": "4.2.1312.1622",
8-
"xunit.runner.aspnet": "2.0.0-aspnet-*"
2+
"dependencies": {
3+
"Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-rc1-final",
4+
"Microsoft.AspNet.DataProtection.Extensions": "1.0.0-rc1-final",
5+
"Microsoft.AspNet.DataProtection.Test.Shared": {
6+
"type": "build",
7+
"version": ""
98
},
10-
"frameworks": {
11-
"dnx451": { }
12-
},
13-
"commands": {
14-
"test": "xunit.runner.aspnet"
15-
},
16-
"compilationOptions": {
17-
"warningsAsErrors": true,
18-
"keyFile": "../../tools/Key.snk"
19-
}
20-
}
9+
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
10+
"Moq": "4.2.1312.1622",
11+
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
12+
},
13+
"frameworks": {
14+
"dnx451": {}
15+
},
16+
"commands": {
17+
"test": "xunit.runner.aspnet"
18+
},
19+
"compilationOptions": {
20+
"warningsAsErrors": true,
21+
"keyFile": "../../tools/Key.snk"
22+
}
23+
}

0 commit comments

Comments
 (0)