Skip to content

Commit

Permalink
migrated to .NET Core SDK 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filipw committed Apr 3, 2017
1 parent 817552d commit 4e45771
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 122 deletions.
32 changes: 32 additions & 0 deletions Strathweb.TypedRouting.AspNetCore/sample/Demo/Demo.csproj
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>
19 changes: 0 additions & 19 deletions Strathweb.TypedRouting.AspNetCore/sample/Demo/Demo.xproj

This file was deleted.

54 changes: 0 additions & 54 deletions Strathweb.TypedRouting.AspNetCore/sample/Demo/project.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"gcServer": true
}
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>

This file was deleted.

This file was deleted.

0 comments on commit 4e45771

Please sign in to comment.