Skip to content
This repository has been archived by the owner on Nov 22, 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 4419578 commit e19ccf3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 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
16 changes: 8 additions & 8 deletions samples/SessionSample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.Session": "1.0.0-*",
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.Extensions.Caching.Redis": "1.0.0-*",
"Microsoft.Extensions.Caching.SqlServer": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Session": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.Redis": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.SqlServer": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final"
},
"publishOptions": {
"include": [
Expand Down
12 changes: 6 additions & 6 deletions src/Microsoft.AspNetCore.Session/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 session state middleware.",
"packOptions": {
"repository": {
Expand All @@ -13,10 +13,10 @@
]
},
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Caching.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Options": "1.0.0-*"
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
},
"buildOptions": {
"allowUnsafe": true,
Expand All @@ -31,7 +31,7 @@
"net451": {},
"netstandard1.3": {
"dependencies": {
"System.Security.Cryptography.Algorithms": "4.1.0-*"
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027"
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions test/Microsoft.AspNetCore.Session.Tests/project.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Session": "1.0.0-*",
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Session": "1.0.0-rc2-final",
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Testing": "1.0.0-*",
"xunit": "2.1.0"
},
Expand All @@ -13,11 +13,11 @@
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"System.Threading.Thread": "4.0.0-*",
"System.Diagnostics.Process": "4.1.0-*"
"System.Threading.Thread": "4.0.0-rc2-24027",
"System.Diagnostics.Process": "4.1.0-rc2-24027"
},
"imports": [
"dnxcore50",
Expand Down

0 comments on commit e19ccf3

Please sign in to comment.