Created
January 27, 2017 17:43
-
-
Save gortok/aaec049bf9fd2d9405c5a2155f06b72b to your computer and use it in GitHub Desktop.
.NET Core 1.1.0 project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"dotnet-test-xunit": "2.2.0-preview2-build1029", | |
"Microsoft.AspNetCore.Mvc": "1.0.1", | |
"Microsoft.AspNetCore.Routing": "1.0.1", | |
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0", | |
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1", | |
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.1", | |
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0", | |
"Microsoft.Extensions.Configuration.Json": "1.0.0", | |
"Microsoft.Extensions.Logging": "1.0.1", | |
"Microsoft.Extensions.Logging.Console": "1.0.0", | |
"Microsoft.Extensions.Logging.Debug": "1.0.0", | |
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0", | |
"xunit": "2.1.0", | |
"Microsoft.AspNetCore.TestHost": "1.0.1", | |
"Microsoft.NETCore.App": { | |
"version": "1.1.0", | |
"type" : "platform" | |
} | |
}, | |
"tools": { | |
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final" | |
}, | |
"frameworks": { | |
"netcoreapp1.1": { | |
"imports": [ | |
"dotnet5.6", | |
"portable-net45+win8" | |
] | |
} | |
}, | |
"testRunner": "xunit", | |
"buildOptions": { | |
"emitEntryPoint": true, | |
"preserveCompilationContext": true, | |
"outputName": "CommandCatalog" | |
}, | |
"runtimeOptions": { | |
"configProperties": { | |
"System.GC.Server": true | |
} | |
}, | |
"publishOptions": { | |
"include": [ | |
"wwwroot", | |
"**/*.cshtml", | |
"appsettings.json", | |
"web.config" | |
] | |
}, | |
"scripts": { | |
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment