Skip to content

Commit c17a466

Browse files
committed
Updating json files to pin versions and build files to pin KoreBuild
1 parent a941a02 commit c17a466

File tree

22 files changed

+69
-69
lines changed

22 files changed

+69
-69
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.Extensions.ActivatorUtilities.Sources/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rtm-21431",
33
"shared": "*.cs",
44
"dependencies": {},
55
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rtm-21431",
33
"shared": "*.cs",
44
"dependencies": {},
55
"frameworks": {

src/Microsoft.Extensions.CommandLineUtils/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",
33
"description": "Command-line parsing API. Commonly used types:\r\nMicrosoft.Extensions.CommandLineUtils.CommandLineApplication\r\nMicrosoft.Extensions.CommandLineUtils.CommandOption",
44
"buildOptions": {
55
"define": [
@@ -26,11 +26,11 @@
2626
"net451": {},
2727
"netstandard1.3": {
2828
"dependencies": {
29-
"System.Collections": "4.0.11-*",
30-
"System.Console": "4.0.0-*",
31-
"System.IO": "4.1.0-*",
32-
"System.Linq": "4.1.0-*",
33-
"System.Resources.ResourceManager": "4.0.1-*"
29+
"System.Collections": "4.0.11",
30+
"System.Console": "4.0.0",
31+
"System.IO": "4.1.0",
32+
"System.Linq": "4.1.0",
33+
"System.Resources.ResourceManager": "4.0.1"
3434
}
3535
}
3636
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rtm-21431",
33
"shared": "*.cs",
44
"dependencies": {},
55
"frameworks": {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rtm-21431",
33
"shared": "*.cs",
44
"dependencies": {
5-
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
6-
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
5+
"Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
6+
"Microsoft.Extensions.PlatformAbstractions": "1.0.0"
77
},
88
"frameworks": {
99
"net451": {},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0-rtm-21431",
33
"shared": "*.cs",
44
"dependencies": {},
55
"frameworks": {

src/Microsoft.Extensions.ObjectPool/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-*",
2+
"version": "1.0.0",
33
"description": "A simple object pool implementation.",
44
"packOptions": {
55
"repository": {
@@ -23,10 +23,10 @@
2323
"net451": {},
2424
"netstandard1.3": {
2525
"dependencies": {
26-
"System.Diagnostics.Debug": "4.0.11-*",
27-
"System.Resources.ResourceManager": "4.0.1-*",
28-
"System.Runtime.Extensions": "4.1.0-*",
29-
"System.Threading": "4.0.11-*"
26+
"System.Diagnostics.Debug": "4.0.11",
27+
"System.Resources.ResourceManager": "4.0.1",
28+
"System.Runtime.Extensions": "4.1.0",
29+
"System.Threading": "4.0.11"
3030
}
3131
}
3232
}

src/Microsoft.Extensions.Primitives/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-*",
2+
"version": "1.0.0",
33
"description": "Primitives shared by framework extensions. Commonly used types include:\r\nMicrosoft.Extensions.Primitives.IChangeToken\r\nMicrosoft.Extensions.Primitives.StringValues\r\nMicrosoft.Extensions.Primitives.StringSegment",
44
"packOptions": {
55
"repository": {
@@ -21,14 +21,14 @@
2121
"dependencies": {
2222
"Microsoft.Extensions.HashCodeCombiner.Sources": {
2323
"type": "build",
24-
"version": "1.0.0-*"
24+
"version": "1.0.0-rtm-21431"
2525
}
2626
},
2727
"frameworks": {
2828
"netstandard1.0": {
2929
"dependencies": {
30-
"System.Runtime": "4.1.0-*",
31-
"System.Resources.ResourceManager": "4.0.1-*"
30+
"System.Runtime": "4.1.0",
31+
"System.Resources.ResourceManager": "4.0.1"
3232
}
3333
}
3434
}

0 commit comments

Comments
 (0)