diff --git a/build.ps1 b/build.ps1 index cf8bff1..6d49c4d 100644 --- a/build.ps1 +++ b/build.ps1 @@ -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 diff --git a/build.sh b/build.sh index f88fe40..a55d3eb 100755 --- a/build.sh +++ b/build.sh @@ -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 diff --git a/src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json b/src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json index 27044d8..ef235ae 100644 --- a/src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json +++ b/src/Microsoft.VisualStudio.Web.BrowserLink.Loader/project.json @@ -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, @@ -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" } } }