Skip to content

Commit 179b3f4

Browse files
committed
Updating json files to pin versions and build files to pin KoreBuild
1 parent 6cbe429 commit 179b3f4

File tree

39 files changed

+197
-197
lines changed

39 files changed

+197
-197
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-rc2.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-rc2.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

src/Microsoft.EntityFrameworkCore.InMemory/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "In memory data store for Entity Framework (to be used for testing purposes).",
44
"buildOptions": {
55
"warningsAsErrors": true,
@@ -13,7 +13,7 @@
1313
}
1414
},
1515
"dependencies": {
16-
"Microsoft.EntityFrameworkCore": "1.0.0-*"
16+
"Microsoft.EntityFrameworkCore": "1.0.0-rc2-final"
1717
},
1818
"frameworks": {
1919
"net451": {},

src/Microsoft.EntityFrameworkCore.Relational.Design.Specification.Tests/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Reusable Microsoft.EntityFrameworkCore.Relational.Design functional tests for provider writers.",
44
"buildOptions": {
55
"keyFile": "../../tools/Key.snk",
@@ -10,12 +10,12 @@
1010
"preserveCompilationContext": true
1111
},
1212
"dependencies": {
13-
"Microsoft.EntityFrameworkCore.Tools.Core": "1.0.0-*",
14-
"Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0-*",
15-
"Microsoft.EntityFrameworkCore.Relational.Specification.Tests": "1.0.0-*",
16-
"Microsoft.Extensions.DependencyModel": "1.0.0-*",
17-
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
18-
"Microsoft.CodeAnalysis.CSharp": "1.3.0-*"
13+
"Microsoft.EntityFrameworkCore.Tools.Core": "1.0.0-rc2-final",
14+
"Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0-rc2-final",
15+
"Microsoft.EntityFrameworkCore.Relational.Specification.Tests": "1.0.0-rc2-final",
16+
"Microsoft.Extensions.DependencyModel": "1.0.0-rc2-final",
17+
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
18+
"Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01"
1919
},
2020
"frameworks": {
2121
"netstandard1.3": {
@@ -24,7 +24,7 @@
2424
"portable-net452+win81"
2525
],
2626
"dependencies": {
27-
"System.Threading.Tasks.Parallel": "4.0.1-*"
27+
"System.Threading.Tasks.Parallel": "4.0.1-rc2-24027"
2828
}
2929
},
3030
"net451": {

src/Microsoft.EntityFrameworkCore.Relational.Design/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-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Shared Design-time Entity Framework components for relational data stores.",
44
"buildOptions": {
55
"warningsAsErrors": true,
@@ -13,7 +13,7 @@
1313
}
1414
},
1515
"dependencies": {
16-
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-*"
16+
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-rc2-final"
1717
},
1818
"frameworks": {
1919
"net451": {},
@@ -26,19 +26,19 @@
2626
"dependencies": {
2727
"Microsoft.NETCore.Platforms": {
2828
"type": "build",
29-
"version": "1.0.1-*"
29+
"version": "1.0.1-rc2-24027"
3030
},
3131
"System.Dynamic.Runtime": {
3232
"type": "build",
33-
"version": "4.0.10"
33+
"version": "4.0.11-rc2-24027"
3434
},
3535
"System.Runtime.WindowsRuntime": {
3636
"type": "build",
37-
"version": "4.0.10"
37+
"version": "4.0.11-rc2-24027"
3838
},
3939
"System.Runtime.Extensions": {
4040
"type": "build",
41-
"version": "4.0.10"
41+
"version": "4.1.0-rc2-24027"
4242
}
4343
}
4444
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Reusable Microsoft.EntityFrameworkCore.Relational functional tests for provider writers.",
44
"buildOptions": {
55
"keyFile": "../../tools/Key.snk",
@@ -9,8 +9,8 @@
99
"xmlDoc": true
1010
},
1111
"dependencies": {
12-
"Microsoft.EntityFrameworkCore.Specification.Tests": "1.0.0-*",
13-
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-*"
12+
"Microsoft.EntityFrameworkCore.Specification.Tests": "1.0.0-rc2-final",
13+
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-rc2-final"
1414
},
1515
"frameworks": {
1616
"netstandard1.3": {
@@ -19,6 +19,6 @@
1919
"portable-net452+win81"
2020
]
2121
},
22-
"net451": { }
22+
"net451": {}
2323
}
2424
}

src/Microsoft.EntityFrameworkCore.Relational/project.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Shared Entity Framework components for relational data stores.",
44
"buildOptions": {
55
"warningsAsErrors": true,
@@ -16,12 +16,12 @@
1616
}
1717
},
1818
"dependencies": {
19-
"Microsoft.EntityFrameworkCore": "1.0.0-*"
19+
"Microsoft.EntityFrameworkCore": "1.0.0-rc2-final"
2020
},
2121
"frameworks": {
2222
"net451": {
2323
"dependencies": {
24-
"System.Diagnostics.DiagnosticSource": "4.0.0-*"
24+
"System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027"
2525
},
2626
"frameworkAssemblies": {
2727
"System.Data": "",
@@ -42,29 +42,29 @@
4242
"portable-net452+win81"
4343
],
4444
"dependencies": {
45-
"Microsoft.CSharp": "4.0.1-*",
46-
"System.Data.Common": "4.0.1-*",
47-
"System.Diagnostics.DiagnosticSource": "4.0.0-*",
48-
"System.Text.RegularExpressions": "4.0.12-*"
45+
"Microsoft.CSharp": "4.0.1-rc2-24027",
46+
"System.Data.Common": "4.0.1-rc2-24027",
47+
"System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027",
48+
"System.Text.RegularExpressions": "4.0.12-rc2-24027"
4949
}
5050
},
5151
"netcore50": {
5252
"dependencies": {
5353
"Microsoft.NETCore.Platforms": {
5454
"type": "build",
55-
"version": "1.0.1-*"
55+
"version": "1.0.1-rc2-24027"
5656
},
57-
"Microsoft.CSharp": "4.0.0",
58-
"System.Data.Common": "4.0.0",
59-
"System.Text.RegularExpressions": "4.0.10",
60-
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-*",
57+
"Microsoft.CSharp": "4.0.1-rc2-24027",
58+
"System.Data.Common": "4.0.1-rc2-24027",
59+
"System.Text.RegularExpressions": "4.0.12-rc2-24027",
60+
"System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027",
6161
"System.Dynamic.Runtime": {
6262
"type": "build",
63-
"version": "4.0.10"
63+
"version": "4.0.11-rc2-24027"
6464
},
6565
"System.Runtime.Extensions": {
6666
"type": "build",
67-
"version": "4.0.10"
67+
"version": "4.1.0-rc2-24027"
6868
}
6969
}
7070
}

src/Microsoft.EntityFrameworkCore.Specification.Tests/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Reusable Microsoft.EntityFrameworkCore functional tests for provider writers.",
44
"buildOptions": {
55
"keyFile": "../../tools/Key.snk",
@@ -9,8 +9,8 @@
99
"xmlDoc": true
1010
},
1111
"dependencies": {
12-
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
13-
"Microsoft.EntityFrameworkCore.InMemory": "1.0.0-*",
12+
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
13+
"Microsoft.EntityFrameworkCore.InMemory": "1.0.0-rc2-final",
1414
"xunit": "2.1.0"
1515
},
1616
"frameworks": {
@@ -20,7 +20,7 @@
2020
"portable-net452+win81"
2121
],
2222
"dependencies": {
23-
"Microsoft.CSharp": "4.0.1-*"
23+
"Microsoft.CSharp": "4.0.1-rc2-24027"
2424
}
2525
},
2626
"net451": {

src/Microsoft.EntityFrameworkCore.SqlServer.Design/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Design-time Entity Framework Functionality for Microsoft SQL Server data store.",
44
"buildOptions": {
55
"warningsAsErrors": true,
@@ -13,11 +13,11 @@
1313
}
1414
},
1515
"dependencies": {
16-
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-*",
17-
"Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0-*"
16+
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-rc2-final",
17+
"Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0-rc2-final"
1818
},
1919
"frameworks": {
20-
"net451": { },
20+
"net451": {},
2121
"netstandard1.3": {
2222
"imports": [
2323
"portable-net452+win81"

src/Microsoft.EntityFrameworkCore.SqlServer/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc2-*",
2+
"version": "1.0.0-rc2-final",
33
"description": "Microsoft SQL Server data store for Entity Framework.",
44
"buildOptions": {
55
"warningsAsErrors": true,
@@ -16,17 +16,17 @@
1616
}
1717
},
1818
"dependencies": {
19-
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-*"
19+
"Microsoft.EntityFrameworkCore.Relational": "1.0.0-rc2-final"
2020
},
2121
"frameworks": {
22-
"net451": { },
22+
"net451": {},
2323
"netstandard1.3": {
2424
"imports": [
2525
"portable-net452+win81"
2626
],
2727
"dependencies": {
28-
"System.Data.SqlClient": "4.1.0-*",
29-
"System.Threading.Thread": "4.0.0-*"
28+
"System.Data.SqlClient": "4.1.0-rc2-24027",
29+
"System.Threading.Thread": "4.0.0-rc2-24027"
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)