diff --git a/TurboLinks.Net.sln b/TurboLinks.Net.sln index a9adb45..480732d 100644 --- a/TurboLinks.Net.sln +++ b/TurboLinks.Net.sln @@ -1,18 +1,15 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2010 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{D0D99B75-30C7-485A-B978-3008D6908B7B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{40D6294D-197C-47C9-9C4F-26C0BAEF2A80}" - ProjectSection(SolutionItems) = preProject - global.json = global.json - EndProjectSection EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TurboLinks.Net", "src\TurboLinks.Net\TurboLinks.Net.xproj", "{54979581-020C-4F8B-99B0-36C28FFBBADE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TurboLinks.Net", "src\TurboLinks.Net\TurboLinks.Net.csproj", "{54979581-020C-4F8B-99B0-36C28FFBBADE}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TurboLinksExample", "src\TurboLinksExample\TurboLinksExample.xproj", "{16DC6FE0-A511-45E0-BD49-28933EAD8A98}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TurboLinksExample", "src\TurboLinksExample\TurboLinksExample.csproj", "{16DC6FE0-A511-45E0-BD49-28933EAD8A98}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -36,4 +33,7 @@ Global {54979581-020C-4F8B-99B0-36C28FFBBADE} = {D0D99B75-30C7-485A-B978-3008D6908B7B} {16DC6FE0-A511-45E0-BD49-28933EAD8A98} = {D0D99B75-30C7-485A-B978-3008D6908B7B} EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BBAAEACA-BCBF-4EE8-BECF-BA22FAE2BFC7} + EndGlobalSection EndGlobal diff --git a/global.json b/global.json deleted file mode 100644 index 0ac230b..0000000 --- a/global.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "projects": [ "src", "test" ], - "sdk": { - "version": "1.0.0-preview2-003131" - } -} diff --git a/src/TurboLinks.Net/Properties/AssemblyInfo.cs b/src/TurboLinks.Net/Properties/AssemblyInfo.cs index 8deef2b..14a3918 100644 --- a/src/TurboLinks.Net/Properties/AssemblyInfo.cs +++ b/src/TurboLinks.Net/Properties/AssemblyInfo.cs @@ -5,12 +5,7 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("TurboLinks.Net")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("TurboLinks.Net")] -[assembly: AssemblyCopyright("Copyright © 2016")] + [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/TurboLinks.Net/TurboLinks.Net.csproj b/src/TurboLinks.Net/TurboLinks.Net.csproj new file mode 100644 index 0000000..c753db0 --- /dev/null +++ b/src/TurboLinks.Net/TurboLinks.Net.csproj @@ -0,0 +1,19 @@ + + + + Add support for Turbolinks + Tommy Parnell + netstandard1.6 + TurboLinks.Net + TurboLinks.Net + TurboLinks Middlewear + https://github.com/terribledev/TurboLinks.Net + https://opensource.org/licenses/MIT + + + + + + + + diff --git a/src/TurboLinks.Net/TurboLinks.Net.xproj b/src/TurboLinks.Net/TurboLinks.Net.xproj deleted file mode 100644 index 02ea6c9..0000000 --- a/src/TurboLinks.Net/TurboLinks.Net.xproj +++ /dev/null @@ -1,20 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 54979581-020c-4f8b-99b0-36c28ffbbade - TurboLinks.Net - ..\..\artifacts\obj\$(MSBuildProjectName) - ..\..\artifacts\bin\$(MSBuildProjectName)\ - - - - 2.0 - - - diff --git a/src/TurboLinks.Net/project.json b/src/TurboLinks.Net/project.json deleted file mode 100644 index ce76ffe..0000000 --- a/src/TurboLinks.Net/project.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "version": "1.1.1", - "description": "Add support for Turbolinks", - "authors": [ "Tommy Parnell" ], - "packOptions": { - "tags": [ "TurboLinks Middlewear" ], - "projectUrl": "https://github.com/tparnell8/TurboLinks.Net", - "licenseUrl": "https://opensource.org/licenses/MIT" - }, - "dependencies": { - "NETStandard.Library": "1.6.0", - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0", - "Microsoft.AspNetCore.StaticFiles": "1.0.0" - }, - - "frameworks": { - "netstandard1.6": { - "imports": "dnxcore50" - } - } -} \ No newline at end of file diff --git a/src/TurboLinksExample/Project_Readme.html b/src/TurboLinksExample/Project_Readme.html deleted file mode 100644 index 1a0f5b5..0000000 --- a/src/TurboLinksExample/Project_Readme.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - Welcome to ASP.NET Core - - - - - - -
-
-

This application consists of:

- -
-
-

How to

- -
-
-

Overview

- -
-
-

Run & Deploy

- -
- - -
- - - diff --git a/src/TurboLinksExample/TurboLinksExample.csproj b/src/TurboLinksExample/TurboLinksExample.csproj new file mode 100644 index 0000000..5d17d4e --- /dev/null +++ b/src/TurboLinksExample/TurboLinksExample.csproj @@ -0,0 +1,48 @@ + + + + netcoreapp1.0 + true + TurboLinksExample + Exe + TurboLinksExample + 1.0.4 + $(PackageTargetFallback);dotnet5.6;portable-net45+win8 + + + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/TurboLinksExample/TurboLinksExample.xproj b/src/TurboLinksExample/TurboLinksExample.xproj deleted file mode 100644 index 6d1aa27..0000000 --- a/src/TurboLinksExample/TurboLinksExample.xproj +++ /dev/null @@ -1,23 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 16dc6fe0-a511-45e0-bd49-28933ead8a98 - TurboLinksExample - .\obj - .\bin\ - v4.5.2 - - - 2.0 - - - - - - - diff --git a/src/TurboLinksExample/project.json b/src/TurboLinksExample/project.json deleted file mode 100644 index faf7152..0000000 --- a/src/TurboLinksExample/project.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "dependencies": { - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.AspNetCore.Diagnostics": "1.0.0", - "Microsoft.AspNetCore.Mvc": "1.0.1", - "Microsoft.AspNetCore.Razor.Tools": { - "version": "1.0.0-preview2-final", - "type": "build" - }, - "Microsoft.AspNetCore.Routing": "1.0.1", - "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0", - "Microsoft.AspNetCore.Server.Kestrel": "1.0.1", - "Microsoft.AspNetCore.StaticFiles": "1.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0", - "Microsoft.Extensions.Configuration.Json": "1.0.0", - "Microsoft.Extensions.Logging": "1.0.0", - "Microsoft.Extensions.Logging.Console": "1.0.0", - "Microsoft.Extensions.Logging.Debug": "1.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0", - "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0", - "TurboLinks.Net": "1.1.1" - }, - - "tools": { - "BundlerMinifier.Core": "2.0.238", - "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final", - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final" - }, - - "frameworks": { - "netcoreapp1.0": { - "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": { - "prepublish": [ "bower install", "dotnet bundle" ], - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] - } -}