Switching to using generations TFM
This commit is contained in:
parent
7cc3e11a9e
commit
39c355002b
|
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"description": "ASP.NET 5 Hosting abstractions.",
|
"description": "ASP.NET 5 Hosting abstractions.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/aspnet/hosting"
|
"url": "git://github.com/aspnet/hosting"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
|
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
|
||||||
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*"
|
"Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-*"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": {},
|
"net451": {},
|
||||||
"dnxcore50": {}
|
"dotnet5.4": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"description": "ASP.NET 5 Hosting server abstractions.",
|
"description": "ASP.NET 5 Hosting server abstractions.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/aspnet/hosting"
|
"url": "git://github.com/aspnet/hosting"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNet.Http.Features": "1.0.0-*",
|
"Microsoft.AspNet.Http.Features": "1.0.0-*",
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-*"
|
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0-*"
|
||||||
},
|
},
|
||||||
|
"frameworks": {
|
||||||
"frameworks": {
|
"net451": {},
|
||||||
"dnx451": { },
|
"dotnet5.4": {}
|
||||||
"dnxcore50": { }
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
@ -1,42 +1,43 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"description": "ASP.NET 5 core hosting infrastructure and startup logic for web applications.",
|
"description": "ASP.NET 5 core hosting infrastructure and startup logic for web applications.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/aspnet/hosting"
|
"url": "git://github.com/aspnet/hosting"
|
||||||
|
},
|
||||||
|
"compilationOptions": {
|
||||||
|
"warningsAsErrors": true,
|
||||||
|
"allowUnsafe": true
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-*",
|
||||||
|
"Microsoft.AspNet.Hosting.Abstractions": "1.0.0-*",
|
||||||
|
"Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-*",
|
||||||
|
"Microsoft.AspNet.Http": "1.0.0-*",
|
||||||
|
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.Configuration": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
||||||
|
"Microsoft.Extensions.Logging": "1.0.0-*",
|
||||||
|
"Microsoft.Dnx.Compilation.Abstractions": "1.0.0-*",
|
||||||
|
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-*",
|
||||||
|
"Newtonsoft.Json": "6.0.6",
|
||||||
|
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-*"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"dnx451": {
|
||||||
|
"frameworkAssemblies": {
|
||||||
|
"System.Runtime": ""
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"compilationOptions": {
|
"dnxcore50": {
|
||||||
"warningsAsErrors": true,
|
"dependencies": {
|
||||||
"allowUnsafe": true
|
"System.Console": "4.0.0-beta-*",
|
||||||
},
|
"System.Diagnostics.StackTrace": "4.0.1-beta-*",
|
||||||
"dependencies": {
|
"System.Reflection.Extensions": "4.0.1-beta-*"
|
||||||
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-*",
|
}
|
||||||
"Microsoft.AspNet.Hosting.Abstractions": "1.0.0-*",
|
|
||||||
"Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-*",
|
|
||||||
"Microsoft.AspNet.Http": "1.0.0-*",
|
|
||||||
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*",
|
|
||||||
"Microsoft.Extensions.Logging": "1.0.0-*",
|
|
||||||
"Microsoft.Dnx.Compilation.Abstractions": "1.0.0-*",
|
|
||||||
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-*",
|
|
||||||
"Newtonsoft.Json": "6.0.6",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-*"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"dnx451": {
|
|
||||||
"frameworkAssemblies": {
|
|
||||||
"System.Runtime": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dnxcore50": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Console": "4.0.0-beta-*",
|
|
||||||
"System.Diagnostics.StackTrace": "4.0.1-beta-*"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue