-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
65 additions
and
122 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<PreserveCompilationContext>true</PreserveCompilationContext> | ||
<AssemblyName>Demo</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>Demo</PackageId> | ||
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion> | ||
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;dnxcore50;portable-net45+win8</PackageTargetFallback> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="wwwroot\**\*;Views"> | ||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Strathweb.TypedRouting.AspNetCore\Strathweb.TypedRouting.AspNetCore.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.3" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.3" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.0.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
Strathweb.TypedRouting.AspNetCore/sample/Demo/project.json
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
Strathweb.TypedRouting.AspNetCore/sample/Demo/runtimeconfig.template.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"gcServer": true | ||
} |
30 changes: 30 additions & 0 deletions
30
...AspNetCore/src/Strathweb.TypedRouting.AspNetCore/Strathweb.TypedRouting.AspNetCore.csproj
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>A library enabling typed routing in ASP.NET MVC Core projects. Next generation of the Strathweb.TypedRouting Web API 2 library.</Description> | ||
<Authors>filipw</Authors> | ||
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks> | ||
<AssemblyName>Strathweb.TypedRouting.AspNetCore</AssemblyName> | ||
<PackageId>Strathweb.TypedRouting.AspNetCore</PackageId> | ||
<PackageTags>ASP.NET Core;routing;typed;asp net;aspnetcore</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/filipw/Strathweb.TypedRouting.AspNetCore</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/filipw/Strathweb.TypedRouting.AspNetCore/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/filipw/Strathweb.TypedRouting.AspNetCore.git</RepositoryUrl> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.6' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="1.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
21 changes: 0 additions & 21 deletions
21
....AspNetCore/src/Strathweb.TypedRouting.AspNetCore/Strathweb.TypedRouting.AspNetCore.xproj
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
Strathweb.TypedRouting.AspNetCore/src/Strathweb.TypedRouting.AspNetCore/project.json
This file was deleted.
Oops, something went wrong.