18 lines
826 B
XML
18 lines
826 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web" ToolsVersion="15.0">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net451;netcoreapp1.1</TargetFrameworks>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifier Condition="'$(TargetFramework)'!='netcoreapp1.1'">win7-x64</RuntimeIdentifier>
|
|
<NetCoreAppImplicitPackageVersion>1.2.0-*</NetCoreAppImplicitPackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.StaticFiles\Microsoft.AspNetCore.StaticFiles.csproj" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.2.0-*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|