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

Commit

Permalink
Updating json files to pin versions and build files to pin KoreBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed May 17, 2016
1 parent b14b930 commit 087ce84
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 55 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder

$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder

koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
14 changes: 7 additions & 7 deletions samples/LocalizationSample/project.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Localization": "1.0.0-*",
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
"Microsoft.Extensions.Localization": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Localization": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-final",
"Microsoft.Extensions.Localization": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -24,7 +24,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
10 changes: 5 additions & 5 deletions src/Microsoft.AspNetCore.Localization/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware for automatically applying culture information to HTTP requests. Culture information can be specified in the HTTP header, query string, cookie, or custom source.",
"packOptions": {
"repository": {
Expand All @@ -20,10 +20,10 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",
"Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-*",
"Microsoft.Extensions.Localization.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Options": "1.0.0-*"
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final",
"Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc2-final",
"Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Provides cached instances of CultureInfo using a generated list of known culture names for use in scenarios where unbounded CultureInfo creation is undesirable.",
"packOptions": {
"repository": {
Expand All @@ -22,9 +22,9 @@
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.Collections.Concurrent": "4.0.12-*",
"System.Linq": "4.1.0-*",
"System.Resources.ResourceManager": "4.0.1-*"
"System.Collections.Concurrent": "4.0.12-rc2-24027",
"System.Linq": "4.1.0-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Abstractions of application localization services.\r\nCommonly used types:\r\nMicrosoft.Extensions.Localization.IStringLocalizer\r\nMicrosoft.Extensions.Localization.IStringLocalizer<T>",
"packOptions": {
"repository": {
Expand All @@ -21,9 +21,9 @@
"frameworks": {
"netstandard1.0": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-*",
"System.Globalization": "4.0.11-*",
"System.Resources.ResourceManager": "4.0.1-*"
"Microsoft.CSharp": "4.0.1-rc2-24027",
"System.Globalization": "4.0.11-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027"
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions src/Microsoft.Extensions.Localization/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Application localization services and default implementation based on ResourceManager to load localized assembly resources.",
"packOptions": {
"repository": {
Expand All @@ -19,17 +19,17 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Localization.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Options": "1.0.0-*"
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
"netstandard1.3": {
"dependencies": {
"System.Collections.Concurrent": "4.0.12-*",
"System.Resources.Reader": "4.0.0-*"
"System.Collections.Concurrent": "4.0.12-rc2-24027",
"System.Resources.Reader": "4.0.0-rc2-24027"
}
}
}
Expand Down
16 changes: 8 additions & 8 deletions test/LocalizationWebsite/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Localization": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
"Microsoft.Extensions.Localization": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Localization": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-final",
"Microsoft.Extensions.Localization": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final"
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"dotnet-test-xunit": "1.0.0-*",
"System.Diagnostics.Process": "4.1.0-*"
"System.Diagnostics.Process": "4.1.0-rc2-24027"
},
"imports": [
"dnxcore50",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Localization": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Localization": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
"Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"xunit": "2.1.0"
},
"frameworks": {
Expand All @@ -19,10 +19,10 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"System.Diagnostics.Process": "4.1.0-*"
"System.Diagnostics.Process": "4.1.0-rc2-24027"
}
},
"net451": {
Expand Down
10 changes: 5 additions & 5 deletions test/Microsoft.AspNetCore.Localization.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Localization": "1.0.0-*",
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Localization": "1.0.0-rc2-final",
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-final",
"xunit": "2.1.0-*"
},
"testRunner": "xunit",
Expand All @@ -18,10 +18,10 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"System.Diagnostics.Process": "4.1.0-*"
"System.Diagnostics.Process": "4.1.0-rc2-24027"
}
},
"net451": {
Expand Down
14 changes: 7 additions & 7 deletions test/Microsoft.Extensions.Localization.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
"Microsoft.Extensions.Localization": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final",
"Microsoft.Extensions.Localization": "1.0.0-rc2-final",
"xunit": "2.1.0-*"
},
"frameworks": {
Expand All @@ -18,13 +18,13 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"moq.netcore": "4.4.0-beta8",
"System.Resources.Writer": "4.0.0-*",
"System.Diagnostics.Process": "4.1.0-*",
"System.Diagnostics.TraceSource": "4.0.0-*"
"System.Resources.Writer": "4.0.0-rc2-24027",
"System.Diagnostics.Process": "4.1.0-rc2-24027",
"System.Diagnostics.TraceSource": "4.0.0-rc2-24027"
}
},
"net451": {
Expand Down

0 comments on commit 087ce84

Please sign in to comment.