Skip to content
This repository has been archived by the owner on Dec 13, 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 021fda7 commit e4de37c
Show file tree
Hide file tree
Showing 13 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion build.ps1
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
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
22 changes: 11 additions & 11 deletions samples/SampleApp/project.json
Expand Up @@ -3,14 +3,14 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-*",
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Physical": "1.0.0-*",
"Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Logging.Filter": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
"Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Filter": "1.0.0-rc2-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final"
},
"publishOptions": {
"include": [
Expand All @@ -20,16 +20,16 @@
"frameworks": {
"net451": {
"dependencies": {
"Microsoft.Extensions.Logging.EventLog": "1.0.0-*"
"Microsoft.Extensions.Logging.EventLog": "1.0.0-rc2-final"
}
},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"System.Console": "4.0.0-*"
"System.Console": "4.0.0-rc2-24027"
},
"imports": [
"dnxcore50",
Expand Down
36 changes: 18 additions & 18 deletions src/Microsoft.Extensions.Logging.Abstractions/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,30 +21,30 @@
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.Collections": "4.0.11-*",
"System.Collections.Concurrent": "4.0.12-*",
"System.Linq": "4.1.0-*",
"System.Globalization": "4.0.11-*",
"System.Reflection": "4.1.0-*",
"System.Resources.ResourceManager": "4.0.1-*",
"System.Runtime.Extensions": "4.1.0-*",
"System.Runtime.InteropServices": "4.1.0-*"
"System.Collections": "4.0.11-rc2-24027",
"System.Collections.Concurrent": "4.0.12-rc2-24027",
"System.Linq": "4.1.0-rc2-24027",
"System.Globalization": "4.0.11-rc2-24027",
"System.Reflection": "4.1.0-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027",
"System.Runtime.Extensions": "4.1.0-rc2-24027",
"System.Runtime.InteropServices": "4.1.0-rc2-24027"
}
},
"netcore50": {
"dependencies": {
"Microsoft.NETCore.Platforms": {
"type": "build",
"version": "1.0.1-*"
"version": "1.0.1-rc2-24027"
},
"System.Collections": "4.0.10",
"System.Collections.Concurrent": "4.0.10",
"System.Linq": "4.0.0",
"System.Globalization": "4.0.10",
"System.Reflection": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.InteropServices": "4.0.20"
"System.Collections": "4.0.11-rc2-24027",
"System.Collections.Concurrent": "4.0.12-rc2-24027",
"System.Linq": "4.1.0-rc2-24027",
"System.Globalization": "4.0.11-rc2-24027",
"System.Reflection": "4.1.0-rc2-24027",
"System.Resources.ResourceManager": "4.0.1-rc2-24027",
"System.Runtime.Extensions": "4.1.0-rc2-24027",
"System.Runtime.InteropServices": "4.1.0-rc2-24027"
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/Microsoft.Extensions.Logging.Console/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -19,9 +19,9 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*"
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {
Expand All @@ -33,8 +33,8 @@
},
"netstandard1.3": {
"dependencies": {
"System.Console": "4.0.0-*",
"System.Threading": "4.0.11-*"
"System.Console": "4.0.0-rc2-24027",
"System.Threading": "4.0.11-rc2-24027"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.Debug/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with System.Diagnostics.Debug.WriteLine().",
"packOptions": {
"repository": {
Expand All @@ -19,7 +19,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*"
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {
Expand All @@ -31,7 +31,7 @@
},
"netstandard1.3": {
"dependencies": {
"System.Diagnostics.Debug": "4.0.11-*"
"System.Diagnostics.Debug": "4.0.11-rc2-24027"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.Extensions.Logging.EventLog/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Windows Event Log logger provider implementation for Microsoft.Extensions.Logging.",
"packOptions": {
"repository": {
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*"
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.Filter/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -19,8 +19,8 @@
]
},
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*"
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final"
},
"frameworks": {
"netstandard1.1": {}
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Extensions.Logging.Testing/project.json
Expand Up @@ -20,7 +20,7 @@
]
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final",
"xunit.assert": "2.1.0-*"
},
"frameworks": {
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.TraceSource/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "TraceSource logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a trace listener by writing messages with System.Diagnostics.TraceSource.TraceEvent().",
"packOptions": {
"repository": {
Expand All @@ -20,7 +20,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*"
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {
Expand All @@ -32,7 +32,7 @@
},
"netstandard1.3": {
"dependencies": {
"System.Diagnostics.TraceSource": "4.0.0-*"
"System.Diagnostics.TraceSource": "4.0.0-rc2-24027"
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions src/Microsoft.Extensions.Logging/project.json
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "Logging infrastructure default implementation for Microsoft.Extensions.Logging.",
"packOptions": {
"repository": {
Expand All @@ -11,8 +11,8 @@
]
},
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final"
},
"buildOptions": {
"warningsAsErrors": true,
Expand All @@ -28,19 +28,19 @@
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.Threading": "4.0.11-*"
"System.Threading": "4.0.11-rc2-24027"
}
},
"netcore50": {
"dependencies": {
"Microsoft.NETCore.Platforms": {
"type": "build",
"version": "1.0.1-*"
"version": "1.0.1-rc2-24027"
},
"System.Threading": "4.0.10",
"System.Threading": "4.0.11-rc2-24027",
"System.Runtime.Extensions": {
"type": "build",
"version": "4.0.10"
"version": "4.1.0-rc2-24027"
}
}
}
Expand Down
20 changes: 10 additions & 10 deletions test/Microsoft.Extensions.Logging.Test/project.json
Expand Up @@ -4,14 +4,14 @@
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Testing": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
"Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
"Microsoft.Extensions.Logging.Filter": "1.0.0-*",
"Microsoft.Extensions.Logging.TraceSource": "1.0.0-*",
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Filter": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.TraceSource": "1.0.0-rc2-final",
"xunit": "2.1.0"
},
"testRunner": "xunit",
Expand All @@ -23,16 +23,16 @@
],
"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",
"moq.netcore": "4.4.0-beta8"
}
},
"net451": {
"dependencies": {
"Microsoft.Extensions.Logging.EventLog": "1.0.0-*",
"Microsoft.Extensions.Logging.EventLog": "1.0.0-rc2-final",
"Moq": "4.2.1312.1622",
"xunit.runner.console": "2.1.0"
},
Expand Down
6 changes: 3 additions & 3 deletions test/Microsoft.Extensions.Logging.Testing.Tests/project.json
Expand Up @@ -5,7 +5,7 @@
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.Extensions.Logging.Testing": "1.0.0-*",
"xunit": "2.1.0"
},
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

0 comments on commit e4de37c

Please sign in to comment.