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 Nov 18, 2015
1 parent 19cd512 commit 8bc8262
Show file tree
Hide file tree
Showing 9 changed files with 93 additions and 88 deletions.
9 changes: 7 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"projects": ["src"]
}
"projects": [
"src"
],
"sdk": {
"version": "1.0.0-rc1-final"
}
}
6 changes: 3 additions & 3 deletions src/Microsoft.AspNet.WebSockets.Client/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"description": "Client for communicating over web sockets.",
"repository": {
"type": "git",
Expand All @@ -10,9 +10,9 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final"
},
"frameworks": {
"net451": { }
"net451": {}
}
}
26 changes: 13 additions & 13 deletions src/Microsoft.AspNet.WebSockets.Protocol/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"description": "Managed web socket protocol parser.",
"repository": {
"type": "git",
Expand All @@ -13,18 +13,18 @@
"net451": {},
"dotnet5.4": {
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1-beta-*",
"System.IO": "4.0.11-beta-*",
"System.Linq": "4.0.1-beta-*",
"System.Net.WebSockets": "4.0.0-beta-*",
"System.Runtime": "4.0.21-beta-*",
"System.Runtime.InteropServices": "4.0.21-beta-*",
"System.Runtime.Extensions": "4.0.11-beta-*",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-*",
"System.Text.Encoding.Extensions": "4.0.11-beta-*",
"System.Threading": "4.0.11-beta-*",
"System.Threading.Tasks": "4.0.11-beta-*",
"System.Threading.Timer": "4.0.1-beta-*"
"System.Diagnostics.Contracts": "4.0.1-beta-23516",
"System.IO": "4.0.11-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Net.WebSockets": "4.0.0-beta-23516",
"System.Runtime": "4.0.21-beta-23516",
"System.Runtime.InteropServices": "4.0.21-beta-23516",
"System.Runtime.Extensions": "4.0.11-beta-23516",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
"System.Text.Encoding.Extensions": "4.0.11-beta-23516",
"System.Threading": "4.0.11-beta-23516",
"System.Threading.Tasks": "4.0.11-beta-23516",
"System.Threading.Timer": "4.0.1-beta-23516"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNet.WebSockets.Server/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"compilationOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
Expand All @@ -10,14 +10,14 @@
"url": "git://github.com/aspnet/websockets"
},
"dependencies": {
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*"
"Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final",
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final"
},
"frameworks": {
"net451": {},
"dotnet5.4": {
"dependencies": {
"System.Runtime": "4.0.21-beta-*"
"System.Runtime": "4.0.21-beta-23516"
}
}
}
Expand Down
20 changes: 10 additions & 10 deletions test/AutobahnTestClient/Project.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"dependencies": {
"Microsoft.AspNet.WebSockets.Client": "1.0.0-*"
},
"commands": {
"run" : "run"
},
"frameworks" : {
"dnx451" : { }
}
}
"dependencies": {
"Microsoft.AspNet.WebSockets.Client": "1.0.0-rc1-final"
},
"commands": {
"run": "run"
},
"frameworks": {
"dnx451": {}
}
}
34 changes: 17 additions & 17 deletions test/AutobahnTestServer/Project.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"webroot": "wwwroot",
"exclude": "wwwroot/**/*",
"dependencies": {
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-*",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:12345",
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:12344"
},
"frameworks" : {
"dnx451" : { },
"dnxcore50" : { }
}
}
"webroot": "wwwroot",
"exclude": "wwwroot/**/*",
"dependencies": {
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:12345",
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:12344"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
}
}
30 changes: 15 additions & 15 deletions test/Microsoft.AspNet.WebSockets.Client.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Client": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-*",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNet.Testing": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": { }
},
"commands": {
"test": "xunit.runner.aspnet"
}
}
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final",
"Microsoft.AspNet.WebSockets.Client": "1.0.0-rc1-final",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"frameworks": {
"dnx451": {}
},
"commands": {
"test": "xunit.runner.aspnet"
}
}
26 changes: 13 additions & 13 deletions test/Microsoft.AspNet.WebSockets.Protocol.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": { },
"dnxcore50": {
"System.IO": "4.0.11-beta-*"
}
},
"commands": {
"test": "xunit.runner.aspnet"
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {
"System.IO": "4.0.11-beta-*"
}
}
},
"commands": {
"test": "xunit.runner.aspnet"
}
}
22 changes: 11 additions & 11 deletions test/TestClient/project.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"commands": {
"TestClient": "TestClient"
},
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*",
"Microsoft.AspNet.WebSockets.Client": "1.0.0-*"
},
"frameworks": {
"dnx451": { }
}
}
"commands": {
"TestClient": "TestClient"
},
"dependencies": {
"Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final",
"Microsoft.AspNet.WebSockets.Client": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": {}
}
}

0 comments on commit 8bc8262

Please sign in to comment.