Last active
January 16, 2017 07:42
-
-
Save pielegacy/5e81be0c237939d2f026d3cde03c8a08 to your computer and use it in GitHub Desktop.
My project.json file from that Medium article I dun did
This file contains hidden or 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": { | |
"Microsoft.NETCore.App": { | |
"version": "1.1.0", | |
"type": "platform" | |
}, | |
"Microsoft.AspNetCore.Mvc": "1.1.0", | |
"Microsoft.AspNetCore.Routing": "1.1.0", | |
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0", | |
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0", | |
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0", | |
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0", | |
"Microsoft.Extensions.Configuration.Json": "1.1.0", | |
"Microsoft.Extensions.Configuration.CommandLine": "1.1.0", | |
"Microsoft.Extensions.Logging": "1.1.0", | |
"Microsoft.Extensions.Logging.Console": "1.1.0", | |
"Microsoft.Extensions.Logging.Debug": "1.1.0", | |
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0", | |
"Microsoft.EntityFrameworkCore.Sqlite": "1.1.0", | |
"Microsoft.EntityFrameworkCore.Design": "1.1.0", | |
"Microsoft.EntityFrameworkCore.Sqlite.Design": "1.1.0" | |
}, | |
"tools": { | |
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final", | |
"Microsoft.EntityFrameworkCore.Tools.DotNet" : "1.1.0-preview4-final", | |
"Microsoft.DotNet.Watcher.Tools" : "1.1.0-preview4-final" | |
}, | |
"frameworks": { | |
"netcoreapp1.1": { | |
"imports": [ | |
"dotnet5.6", | |
"portable-net45+win8" | |
] | |
} | |
}, | |
"buildOptions": { | |
"emitEntryPoint": true, | |
"preserveCompilationContext": true | |
}, | |
"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%" ] | |
}, | |
"tooling": { | |
"defaultNamespace": "TomatoAPI" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment