Skip to content
This repository has been archived by the owner on Dec 14, 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 fc74441 commit 3733616
Show file tree
Hide file tree
Showing 84 changed files with 1,260 additions and 1,214 deletions.
11 changes: 9 additions & 2 deletions global.json
@@ -1,3 +1,10 @@
{
"projects": ["src", "test/WebSites", "samples"]
}
"projects": [
"src",
"test/WebSites",
"samples"
],
"sdk": {
"version": "1.0.0-rc1-final"
}
}
32 changes: 14 additions & 18 deletions samples/MvcMinimalSample.Web/project.json
@@ -1,24 +1,20 @@
{
"webroot": "wwwroot",
"version": "1.0.0-*",

"dependencies": {
"Microsoft.AspNet.Mvc.Core": "6.0.0-*",
"Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-*",
"Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-*",
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*"
},

{
"webroot": "wwwroot",
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final",
"Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final"
},
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
},

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

"publishExclude": [
"**.user",
"**.vspscc"
Expand All @@ -28,4 +24,4 @@
"node_modules",
"bower_components"
]
}
}
28 changes: 14 additions & 14 deletions samples/MvcSample.Web/project.json
Expand Up @@ -7,21 +7,21 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
"Microsoft.AspNet.Localization": "1.0.0-*",
"Microsoft.AspNet.Mvc": "6.0.0-*",
"Microsoft.AspNet.Mvc.Formatters.Xml": "6.0.0-*",
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.Session": "1.0.0-*",
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
"Microsoft.AspNet.Localization": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.Formatters.Xml": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.WebApiCompatShim": "6.0.0-rc1-final",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final",
"Microsoft.AspNet.Session": "1.0.0-rc1-final",
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
"dnx451": {},
"dnxcore50": {}
},
"exclude": [
"wwwroot",
Expand All @@ -33,4 +33,4 @@
"**.vspscc"
],
"webroot": "wwwroot"
}
}
22 changes: 11 additions & 11 deletions samples/TagHelperSample.Web/project.json
Expand Up @@ -7,18 +7,18 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
"Microsoft.AspNet.Mvc": "6.0.0-*",
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
"Microsoft.AspNet.Tooling.Razor": "1.0.0-*"
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final",
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final",
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
"Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
"dnx451": {},
"dnxcore50": {}
},
"exclude": [
"wwwroot",
Expand All @@ -30,4 +30,4 @@
"**.vspscc"
],
"webroot": "wwwroot"
}
}
20 changes: 10 additions & 10 deletions src/Microsoft.AspNet.Mvc.Abstractions/project.json
@@ -1,6 +1,6 @@
{
"description": "The core abstractions of ASP.NET MVC.",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,32 +10,32 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Routing": "1.0.0-*",
"Microsoft.AspNet.Routing": "1.0.0-rc1-final",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.CopyOnWriteDictionary.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.HashCodeCombiner.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
}
},
"frameworks": {
"net451": {},
"dotnet5.4": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-*",
"System.ComponentModel.TypeConverter": "4.0.1-beta-*",
"System.Reflection.Extensions": "4.0.1-beta-*",
"System.Text.Encoding.Extensions": "4.0.11-beta-*"
"Microsoft.CSharp": "4.0.1-beta-23516",
"System.ComponentModel.TypeConverter": "4.0.1-beta-23516",
"System.Reflection.Extensions": "4.0.1-beta-23516",
"System.Text.Encoding.Extensions": "4.0.11-beta-23516"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNet.Mvc.ApiExplorer/project.json
@@ -1,6 +1,6 @@
{
"description": "Contains API explorer functionality for ASP.NET MVC for discovering metadata such as the list of controllers and actions, and their URLs and allowed HTTP methods.",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,13 +10,13 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Mvc.Core": "6.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
}
},
Expand Down
28 changes: 14 additions & 14 deletions src/Microsoft.AspNet.Mvc.Core/project.json
@@ -1,6 +1,6 @@
{
"description": "The core runtime components of ASP.NET MVC.",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,30 +10,30 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Authorization": "1.0.0-*",
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*",
"Microsoft.AspNet.Hosting.Abstractions": "1.0.0-*",
"Microsoft.AspNet.Mvc.Abstractions": "6.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
"Microsoft.AspNet.Authorization": "1.0.0-rc1-final",
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final",
"Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc.Abstractions": "6.0.0-rc1-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Extensions.MemoryPool": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final",
"Microsoft.Extensions.MemoryPool": "1.0.0-rc1-final",
"Microsoft.Extensions.PropertyActivator.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.SecurityHelper.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-*"
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516"
},
"frameworks": {
"net451": {
Expand All @@ -43,7 +43,7 @@
},
"dotnet5.4": {
"dependencies": {
"System.Text.Encoding": "4.0.11-*"
"System.Text.Encoding": "4.0.11-beta-23516"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNet.Mvc.Cors/project.json
@@ -1,6 +1,6 @@
{
"description": "CORS features for the core MVC runtime",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,8 +10,8 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-*"
"Microsoft.AspNet.Cors": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final"
},
"frameworks": {
"net451": {},
Expand Down
12 changes: 6 additions & 6 deletions src/Microsoft.AspNet.Mvc.DataAnnotations/project.json
@@ -1,6 +1,6 @@
{
"description": "Metadata and Validation using System.ComponentModel.DataAnnotations for the MVC runtime",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,16 +10,16 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Mvc.Core": "6.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.CopyOnWriteDictionary.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.Localization": "1.0.0-*"
"Microsoft.Extensions.Localization": "1.0.0-rc1-final"
},
"frameworks": {
"net451": {
Expand All @@ -29,7 +29,7 @@
},
"dotnet5.4": {
"dependencies": {
"System.ComponentModel.Annotations": "4.0.11-beta-*"
"System.ComponentModel.Annotations": "4.0.11-beta-23516"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNet.Mvc.Formatters.Json/project.json
@@ -1,6 +1,6 @@
{
"description": "JSON input and output for the MVC runtime",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,10 +10,10 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.JsonPatch": "1.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-*",
"Microsoft.AspNet.JsonPatch": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Newtonsoft.Json": "6.0.6"
Expand Down
12 changes: 6 additions & 6 deletions src/Microsoft.AspNet.Mvc.Formatters.Xml/project.json
@@ -1,6 +1,6 @@
{
"description": "Contains DataContractSerializer and XmlSerializer based input and output formatters",
"version": "6.0.0-*",
"version": "6.0.0-rc1-final",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/mvc"
Expand All @@ -10,13 +10,13 @@
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"Microsoft.AspNet.Mvc.Core": "6.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"type": "build"
}
},
Expand All @@ -29,8 +29,8 @@
},
"dotnet5.4": {
"dependencies": {
"System.Runtime.Serialization.Xml": "4.1.0-beta-*",
"System.Xml.XmlSerializer": "4.0.11-beta-*"
"System.Runtime.Serialization.Xml": "4.1.0-beta-23516",
"System.Xml.XmlSerializer": "4.0.11-beta-23516"
}
}
}
Expand Down

0 comments on commit 3733616

Please sign in to comment.