From cf2caa47b391feaeefcef140526222c9067cb293 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Thu, 7 Dec 2017 10:56:04 -0500 Subject: [PATCH] core 2.0, add feedback route --- Routes.cs | 3 +- aka.terribledev.io.csproj | 27 +++--------------- project.json | 60 --------------------------------------- 3 files changed, 6 insertions(+), 84 deletions(-) delete mode 100644 project.json diff --git a/Routes.cs b/Routes.cs index 252acd4..449fee6 100644 --- a/Routes.cs +++ b/Routes.cs @@ -11,7 +11,8 @@ namespace aka.terribledev.io ["github"] = "https://github.com/terribledev", ["git-cheatsheet"] = "https://github.com/TerribleDev/Git-CheatSheet", ["janus-intro"] = "https://janus-vistaprint.github.io/intro-deck/", - ["jenkins-groovy"] = "https://jenkinsci.github.io/job-dsl-plugin/" + ["jenkins-groovy"] = "https://jenkinsci.github.io/job-dsl-plugin/", + ["feedback"] = "https://docs.google.com/forms/d/e/1FAIpQLSetozvuoSVTOb_lTH0CvQhYMzsXGggGQQdEEq041uQpJlOxVg/viewform?usp=sf_link" }; public static string CalculateHostRedirect(string host) diff --git a/aka.terribledev.io.csproj b/aka.terribledev.io.csproj index 4d80906..fa6f223 100644 --- a/aka.terribledev.io.csproj +++ b/aka.terribledev.io.csproj @@ -1,40 +1,21 @@  - - netcoreapp1.1 - true + netcoreapp2.0 aka.terribledev.io - Exe aka.terribledev.io - 1.1.1 - $(PackageTargetFallback);dotnet5.6;portable-net45+win8 /subscriptions/6332a4fe-3d5b-4857-9206-6dedd406f451/resourcegroups/Default-ApplicationInsights-EastUS/providers/microsoft.insights/components/tparnellaka /subscriptions/6332a4fe-3d5b-4857-9206-6dedd406f451/resourcegroups/Default-ApplicationInsights-EastUS/providers/microsoft.insights/components/tparnellaka - PreserveNewest - - - - - - - - - - - - - + + - - - + \ No newline at end of file diff --git a/project.json b/project.json deleted file mode 100644 index 8f6aaeb..0000000 --- a/project.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "dependencies": { - "Microsoft.NETCore.App": { - "version": "1.1.0", - "type": "platform" - }, - "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" - }, - - "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.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": "aka.terribledev.io" - } -}