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

Commit

Permalink
Updating json files to pin versions and build.cmd to pin KoreBuild an…
Browse files Browse the repository at this point in the history
…d DNX
  • Loading branch information
Suhas Joshi committed May 12, 2015
1 parent e1e95d7 commit c60b078
Show file tree
Hide file tree
Showing 18 changed files with 11,480 additions and 37 deletions.
1 change: 1 addition & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet" value="https://nuget.org/api/v2/" />
<add key="AspNetMaster" value="https://www.myget.org/F/aspnetmaster/api/v2" />
</packageSources>
Expand Down
12 changes: 10 additions & 2 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul

:restore
IF EXIST packages\KoreBuild goto run
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
IF DEFINED BUILDCMD_RELEASE (
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
) ELSE (
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
)
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion

IF "%SKIP_DNX_INSTALL%"=="1" goto run
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
IF DEFINED BUILDCMD_RELEASE (
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
) ELSE (
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
)
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86

:run
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.WebSockets.Client/project.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta4",
"description": "Client for communicating over web sockets.",
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta4"
},
"frameworks": {
"net45": { }
Expand Down
11 changes: 11 additions & 0 deletions src/Microsoft.AspNet.WebSockets.Client/project.lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"locked": true,
"version": -9998,
"projectFileDependencyGroups": {
"": [
"Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta4"
],
".NETFramework,Version=v4.5": []
},
"libraries": {}
}
28 changes: 14 additions & 14 deletions src/Microsoft.AspNet.WebSockets.Protocol/project.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta4",
"description": "Managed web socket protocol parser.",
"frameworks": {
"net45": { },
"dnxcore50": {
"dependencies": {
"Microsoft.Net.WebSocketAbstractions": "1.0.0-*",
"System.Diagnostics.Contracts": "4.0.0-beta-*",
"System.IO": "4.0.10-beta-*",
"System.Linq": "4.0.0-beta-*",
"System.Runtime": "4.0.20-beta-*",
"System.Runtime.InteropServices": "4.0.20-beta-*",
"System.Runtime.Extensions": "4.0.10-beta-*",
"System.Security.Cryptography.Encryption": "4.0.0-beta-*",
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*",
"System.Text.Encoding.Extensions": "4.0.10-beta-*",
"System.Threading": "4.0.10-beta-*",
"System.Threading.Tasks": "4.0.10-beta-*",
"System.Threading.Timer": "4.0.0-beta-*"
"Microsoft.Net.WebSocketAbstractions": "1.0.0-beta4",
"System.Diagnostics.Contracts": "4.0.0-beta-22816",
"System.IO": "4.0.10-beta-22816",
"System.Linq": "4.0.0-beta-22816",
"System.Runtime": "4.0.20-beta-22816",
"System.Runtime.InteropServices": "4.0.20-beta-22816",
"System.Runtime.Extensions": "4.0.10-beta-22816",
"System.Security.Cryptography.Encryption": "4.0.0-beta-22816",
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-22816",
"System.Text.Encoding.Extensions": "4.0.10-beta-22816",
"System.Threading": "4.0.10-beta-22816",
"System.Threading.Tasks": "4.0.10-beta-22816",
"System.Threading.Timer": "4.0.0-beta-22816"
}
}
}
Expand Down
Loading

0 comments on commit c60b078

Please sign in to comment.