Skip to content
This repository was archived by the owner on Nov 1, 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 4b80fa3 commit b48aad3
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 61 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"
}
}
18 changes: 7 additions & 11 deletions samples/IISSample/project.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
{
"webroot": "wwwroot",
"version": "1.0.0-*",

"dependencies": {
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final"
},

"commands": {
"weblistener": "Microsoft.AspNet.Server.WebListener",
"web": "Microsoft.AspNet.Server.Kestrel"
},

"frameworks": {
"dnx451": { },
"dnxcore50": { }
"dnx451": {},
"dnxcore50": {}
},

"publishExclude": [
"node_modules",
"bower_components",
Expand All @@ -31,4 +27,4 @@
"node_modules",
"bower_components"
]
}
}
18 changes: 9 additions & 9 deletions src/Microsoft.AspNet.IISPlatformHandler/project.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"compilationOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
},
"description": "ASP.NET 5 components for working with the IIS HttpPlatformHandler module.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/IISIntegration"
"type": "git",
"url": "git://github.com/aspnet/IISIntegration"
},
"dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-rc1-final",
"Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final",
"Microsoft.Extensions.SecurityHelper.Sources": {
"type": "build",
"version": "1.0.0-*"
"version": "1.0.0-rc1-final"
}
},
"frameworks": {
"net451": { },
"net451": {},
"dotnet5.4": {
"dependencies": {
"System.Security.Principal.Windows": "4.0.0-beta-*"
"System.Security.Principal.Windows": "4.0.0-beta-23516"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"compilationOptions": {
"warningsAsErrors": true
},
"commands": {
"test": "xunit.runner.aspnet"
},
"dependencies": {
"Microsoft.AspNet.Server.Testing": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": {
"frameworkAssemblies": {
"System.Data": "",
"System.Net.Http": "",
"System.Net.Http.WebRequest": "",
"System.Xml": ""
}
}
"compilationOptions": {
"warningsAsErrors": true
},
"commands": {
"test": "xunit.runner.aspnet"
},
"dependencies": {
"Microsoft.AspNet.Server.Testing": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"frameworks": {
"dnx451": {
"frameworkAssemblies": {
"System.Data": "",
"System.Net.Http": "",
"System.Net.Http.WebRequest": "",
"System.Xml": ""
}
}
}
}
14 changes: 7 additions & 7 deletions test/Microsoft.AspNet.IISPlatformHandler.Tests/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNet.TestHost": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.TestHost": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"commands": {
"test": "xunit.runner.aspnet"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
"dnx451": {},
"dnxcore50": {}
}
}
}
24 changes: 12 additions & 12 deletions test/TestSites/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"webroot": "wwwroot",
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.WebUtilities": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final",
"Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"frameworks": {
"dnx451": { },
"dnx451": {},
"dnxcore50": {
"dependencies": {
"System.Net.Primitives": "4.0.11-beta-*",
"System.Runtime": "4.0.21-beta-*"
"System.Net.Primitives": "4.0.11-beta-23516",
"System.Runtime": "4.0.21-beta-23516"
}
}
},
Expand All @@ -36,4 +36,4 @@
"node_modules",
"bower_components"
]
}
}

0 comments on commit b48aad3

Please sign in to comment.