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

Commit 6468565

Browse files
committed
Updating json files to pin versions and build files to pin KoreBuild
1 parent dadc3d4 commit 6468565

File tree

6 files changed

+40
-40
lines changed

6 files changed

+40
-40
lines changed

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cd $PSScriptRoot
3333
$repoFolder = $PSScriptRoot
3434
$env:REPO_FOLDER = $repoFolder
3535

36-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
36+
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
3737
if ($env:KOREBUILD_ZIP)
3838
{
3939
$koreBuildZip=$env:KOREBUILD_ZIP

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
33
cd $repoFolder
44

5-
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
5+
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

src/Microsoft.Extensions.DependencyInjection.Abstractions/project.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Abstractions for dependency injection.\r\nCommonly used types:\r\nMicrosoft.Extensions.DependencyInjection.IServiceCollection\r\nMicrosoft.Extensions.DependencyInjection.ServiceCollectionExtensions",
44
"packOptions": {
55
"repository": {
@@ -28,31 +28,31 @@
2828
"frameworks": {
2929
"netstandard1.0": {
3030
"dependencies": {
31-
"System.ComponentModel": "4.0.1-*",
32-
"System.Diagnostics.Debug": "4.0.11-*",
33-
"System.Globalization": "4.0.11-*",
34-
"System.Linq": "4.1.0-*",
35-
"System.Linq.Expressions": "4.0.11-*",
36-
"System.Reflection": "4.1.0-*",
37-
"System.Resources.ResourceManager": "4.0.1-*"
31+
"System.ComponentModel": "4.0.1-rc2-24027",
32+
"System.Diagnostics.Debug": "4.0.11-rc2-24027",
33+
"System.Globalization": "4.0.11-rc2-24027",
34+
"System.Linq": "4.1.0-rc2-24027",
35+
"System.Linq.Expressions": "4.0.11-rc2-24027",
36+
"System.Reflection": "4.1.0-rc2-24027",
37+
"System.Resources.ResourceManager": "4.0.1-rc2-24027"
3838
}
3939
},
4040
"netcore50": {
4141
"dependencies": {
4242
"Microsoft.NETCore.Platforms": {
4343
"type": "build",
44-
"version": "1.0.1-*"
44+
"version": "1.0.1-rc2-24027"
4545
},
46-
"System.ComponentModel": "4.0.0",
47-
"System.Diagnostics.Debug": "4.0.10",
48-
"System.Globalization": "4.0.10",
49-
"System.Linq": "4.0.0",
50-
"System.Linq.Expressions": "4.0.10",
51-
"System.Reflection": "4.0.10",
52-
"System.Resources.ResourceManager": "4.0.0",
46+
"System.ComponentModel": "4.0.1-rc2-24027",
47+
"System.Diagnostics.Debug": "4.0.11-rc2-24027",
48+
"System.Globalization": "4.0.11-rc2-24027",
49+
"System.Linq": "4.1.0-rc2-24027",
50+
"System.Linq.Expressions": "4.0.11-rc2-24027",
51+
"System.Reflection": "4.1.0-rc2-24027",
52+
"System.Resources.ResourceManager": "4.0.1-rc2-24027",
5353
"System.Threading": {
5454
"type": "build",
55-
"version": "4.0.10"
55+
"version": "4.0.11-rc2-24027"
5656
}
5757
}
5858
}

src/Microsoft.Extensions.DependencyInjection.Specification.Tests/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-rc2-final",
33
"description": "Suite of xUnit.net tests to check for container compatibility with Microsoft.Extensions.DependencyInjection.",
44
"packOptions": {
55
"tags": [
@@ -8,7 +8,7 @@
88
]
99
},
1010
"dependencies": {
11-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
11+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
1212
"xunit.assert": "2.1.0",
1313
"xunit.extensibility.core": "2.1.0"
1414
},
@@ -26,7 +26,7 @@
2626
"portable-net45+win8"
2727
],
2828
"dependencies": {
29-
"System.Threading": "4.0.11-*"
29+
"System.Threading": "4.0.11-rc2-24027"
3030
}
3131
}
3232
}

src/Microsoft.Extensions.DependencyInjection/project.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection.",
44
"packOptions": {
55
"repository": {
@@ -20,29 +20,29 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*"
23+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final"
2424
},
2525
"frameworks": {
2626
"netstandard1.1": {
2727
"dependencies": {
28-
"System.Collections": "4.0.11-*",
29-
"System.Collections.Concurrent": "4.0.12-*",
30-
"System.Runtime.Extensions": "4.1.0-*",
31-
"System.Threading": "4.0.11-*",
32-
"System.Threading.Tasks": "4.0.11-*"
28+
"System.Collections": "4.0.11-rc2-24027",
29+
"System.Collections.Concurrent": "4.0.12-rc2-24027",
30+
"System.Runtime.Extensions": "4.1.0-rc2-24027",
31+
"System.Threading": "4.0.11-rc2-24027",
32+
"System.Threading.Tasks": "4.0.11-rc2-24027"
3333
}
3434
},
3535
"netcore50": {
3636
"dependencies": {
3737
"Microsoft.NETCore.Platforms": {
3838
"type": "build",
39-
"version": "1.0.1-*"
39+
"version": "1.0.1-rc2-24027"
4040
},
41-
"System.Collections": "4.0.10",
42-
"System.Collections.Concurrent": "4.0.10",
43-
"System.Runtime.Extensions": "4.0.10",
44-
"System.Threading": "4.0.10",
45-
"System.Threading.Tasks": "4.0.10"
41+
"System.Collections": "4.0.11-rc2-24027",
42+
"System.Collections.Concurrent": "4.0.12-rc2-24027",
43+
"System.Runtime.Extensions": "4.1.0-rc2-24027",
44+
"System.Threading": "4.0.11-rc2-24027",
45+
"System.Threading.Tasks": "4.0.11-rc2-24027"
4646
}
4747
}
4848
}

test/Microsoft.Extensions.DependencyInjection.Tests/project.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
},
77
"dependencies": {
88
"dotnet-test-xunit": "1.0.0-*",
9-
"Microsoft.NETCore.Platforms": "1.0.1-*",
9+
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
1010
"Microsoft.AspNetCore.Testing": "1.0.0-*",
11-
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
12-
"Microsoft.Extensions.DependencyInjection.Specification.Tests": "1.0.0-*",
11+
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final",
12+
"Microsoft.Extensions.DependencyInjection.Specification.Tests": "1.0.0-rc2-final",
1313
"xunit": "2.1.0"
1414
},
1515
"frameworks": {
@@ -20,10 +20,10 @@
2020
],
2121
"dependencies": {
2222
"Microsoft.NETCore.App": {
23-
"version": "1.0.0-*",
23+
"version": "1.0.0-rc2-3002702",
2424
"type": "platform"
2525
},
26-
"System.Diagnostics.Process": "4.1.0-*"
26+
"System.Diagnostics.Process": "4.1.0-rc2-24027"
2727
}
2828
},
2929
"net451": {

0 commit comments

Comments
 (0)