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

Commit 0f1cde5

Browse files
committed
Updating json files to pin versions and build files to pin KoreBuild
1 parent 2667674 commit 0f1cde5

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
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.zip"
3737
if ($env:KOREBUILD_ZIP)
3838
{
3939
$koreBuildZip=$env:KOREBUILD_ZIP

build.sh

Lines changed: 1 addition & 1 deletion
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.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

src/Microsoft.AspNetCore.Testing/project.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "Various helpers for writing tests that use DNX or ASP.NET.",
3-
"version": "1.0.0-*",
3+
"version": "1.0.0-rtm-21431",
44
"buildOptions": {
55
"warningsAsErrors": true,
66
"keyFile": "../../tools/Key.snk",
@@ -17,10 +17,10 @@
1717
},
1818
"dependencies": {
1919
"Microsoft.Extensions.RuntimeEnvironment.Sources": {
20-
"version": "1.0.0-*",
20+
"version": "1.0.0-rtm-21431",
2121
"type": "build"
2222
},
23-
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0-*",
23+
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
2424
"xunit": "2.1.0"
2525
},
2626
"frameworks": {
@@ -39,13 +39,13 @@
3939
},
4040
"netstandard1.3": {
4141
"dependencies": {
42-
"System.Globalization": "4.0.11-*",
43-
"System.Linq": "4.1.0-*",
44-
"System.Reflection": "4.1.0-*",
45-
"System.Resources.ResourceManager": "4.0.1-*",
46-
"System.Runtime.Extensions": "4.1.0-*",
47-
"System.Runtime.InteropServices": "4.1.0-*",
48-
"System.Threading.Thread": "4.0.0-*"
42+
"System.Globalization": "4.0.11",
43+
"System.Linq": "4.1.0",
44+
"System.Reflection": "4.1.0",
45+
"System.Resources.ResourceManager": "4.0.1",
46+
"System.Runtime.Extensions": "4.1.0",
47+
"System.Runtime.InteropServices": "4.1.0",
48+
"System.Threading.Thread": "4.0.0"
4949
},
5050
"imports": [
5151
"portable-net451+win8"

test/Microsoft.AspNetCore.Testing.Tests/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
"keyFile": "../../tools/Key.snk"
66
},
77
"dependencies": {
8-
"dotnet-test-xunit": "1.0.0-*",
9-
"Microsoft.AspNetCore.Testing": "1.0.0-*",
10-
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0-*",
8+
"dotnet-test-xunit": "1.0.0-rc3-000000-00",
9+
"Microsoft.AspNetCore.Testing": "1.0.0-rtm-21431",
10+
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
1111
"xunit": "2.1.0"
1212
},
1313
"frameworks": {
1414
"netcoreapp1.0": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.0.0-*",
17+
"version": "1.0.0",
1818
"type": "platform"
1919
},
20-
"System.Diagnostics.Process": "4.1.0-*"
20+
"System.Diagnostics.Process": "4.1.0"
2121
},
2222
"imports": [
2323
"dnxcore50",

test/Sample.Tests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"portable-net451+win8"
1414
],
1515
"dependencies": {
16-
"dotnet-test-xunit": "1.0.0-*",
17-
"System.Diagnostics.Process": "4.1.0-*"
16+
"dotnet-test-xunit": "1.0.0-rc3-000000-00",
17+
"System.Diagnostics.Process": "4.1.0"
1818
}
1919
},
2020
"net451": {

0 commit comments

Comments
 (0)