Skip to content

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 Jun 27, 2016
1 parent ba72afb commit 2cff403
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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.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.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
20 changes: 10 additions & 10 deletions src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "14.0.0-*",
"version": "14.0.0",
"description": "A middleware that supports creating a communication channel between the development environment and one or more web browsers.",
"buildOptions": {
"warningsAsErrors": true,
Expand All @@ -10,20 +10,20 @@
]
},
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Physical": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
"Microsoft.Extensions.FileProviders.Physical": "1.0.0",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0"
},
"frameworks": {
"net451": {},
"netstandard1.5": {
"dependencies": {
"Microsoft.Win32.Registry": "4.0.0-*",
"System.Text.Encoding": "4.0.11-*",
"System.Threading": "4.0.11-*",
"System.Net.Sockets": "4.1.0-*",
"System.Collections": "4.0.11-*",
"System.Runtime.Loader": "4.0.0-*"
"Microsoft.Win32.Registry": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Collections": "4.0.11",
"System.Runtime.Loader": "4.0.0"
}
}
}
Expand Down

0 comments on commit 2cff403

Please sign in to comment.