Clean up shared framework generation.

This commit is contained in:
John Luo 2017-12-06 15:25:45 -08:00
parent 2d5e7ae798
commit 911264eb04
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="$(PackageVersion)" /> <PackageReference Include="Microsoft.AspNetCore.All" Version="$(PackageVersion)" ExcludeAssets="Build" />
<PackageReference Include="Microsoft.NETCore.App" Version="$(RuntimeFrameworkVersion)"/> <PackageReference Include="Microsoft.NETCore.App" Version="$(RuntimeFrameworkVersion)"/>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -23,7 +23,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Content Include="build\**\*.props" PackagePath="%(Identity)" /> <Content Include="build\$(TargetFramework)\*.props" PackagePath="%(Identity)" />
<Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" /> <Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" />
</ItemGroup> </ItemGroup>

View File

@ -1,5 +1,5 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<MicrosoftNETPlatformLibrary>Microsoft.AspNetCore.All</MicrosoftNETPlatformLibrary> <MicrosoftNETPlatformLibrary>Microsoft.AspNetCore.All</MicrosoftNETPlatformLibrary>
</PropertyGroup> </PropertyGroup>
</Project> </Project>