16 lines
637 B
XML
16 lines
637 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<Import Project="..\..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp2.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.Mvc\Microsoft.AspNetCore.Mvc.csproj" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="$(AspNetCoreVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(AspNetCoreVersion)" />
|
|
</ItemGroup>
|
|
</Project>
|