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
pranavkm committed Jul 28, 2015
1 parent 0cfa4c8 commit 6c437d1
Show file tree
Hide file tree
Showing 17 changed files with 9,576 additions and 61 deletions.
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
8 changes: 4 additions & 4 deletions src/Microsoft.AspNet.WebSockets.Client/project.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta6",
"description": "Client for communicating over web sockets.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/websockets"
},
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6"
},
"frameworks": {
"net45": { }
"net45": {}
}
}
}
45 changes: 45 additions & 0 deletions src/Microsoft.AspNet.WebSockets.Client/project.lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"locked": true,
"version": 1,
"targets": {
".NETFramework,Version=v4.5": {
"Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": {
"frameworkAssemblies": [
"Microsoft.CSharp",
"mscorlib",
"System",
"System.Core"
],
"compile": {
"lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {}
},
"runtime": {
"lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {}
}
}
}
},
"libraries": {
"Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": {
"sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==",
"files": [
"lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll",
"lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml",
"lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll",
"lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml",
"lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll",
"lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml",
"Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg",
"Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512",
"Microsoft.Framework.NotNullAttribute.Sources.nuspec",
"shared/NotNullAttribute.cs"
]
}
},
"projectFileDependencyGroups": {
"": [
"Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6"
],
".NETFramework,Version=v4.5": []
}
}
41 changes: 22 additions & 19 deletions src/Microsoft.AspNet.WebSockets.Protocol/project.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,36 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta6",
"description": "Managed web socket protocol parser.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/websockets"
},
"dependencies": {
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }
"Microsoft.Framework.NotNullAttribute.Sources": {
"type": "build",
"version": "1.0.0-beta6"
}
},
"frameworks": {
"net45": { },
"net45": {},
"dnxcore50": {
"dependencies": {
"System.Diagnostics.Contracts": "4.0.0-beta-*",
"System.IO": "4.0.10-beta-*",
"System.Linq": "4.0.0-beta-*",
"System.Net.WebSockets": "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": "4.0.0-beta-*",
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*",
"System.Security.Cryptography.RandomNumberGenerator": "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-*"
"System.Diagnostics.Contracts": "4.0.0-beta-23109",
"System.IO": "4.0.10-beta-23109",
"System.Linq": "4.0.0-beta-23109",
"System.Net.WebSockets": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.InteropServices": "4.0.20-beta-23109",
"System.Runtime.Extensions": "4.0.10-beta-23109",
"System.Security.Cryptography.Encryption": "4.0.0-beta-23109",
"System.Security.Cryptography.Hashing": "4.0.0-beta-23109",
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109",
"System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109",
"System.Text.Encoding.Extensions": "4.0.10-beta-23109",
"System.Threading": "4.0.10-beta-23109",
"System.Threading.Tasks": "4.0.10-beta-23109",
"System.Threading.Timer": "4.0.0-beta-23109"
}
}
}
}
}
Loading

0 comments on commit 6c437d1

Please sign in to comment.