20 lines
750 B
XML
20 lines
750 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFrameworks>net451;netcoreapp1.1</TargetFrameworks>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Include="ApacheModRewrite.txt;IISUrlRewrite.xml;testCert.pfx" CopyToPublishDirectory="PreserveNewest" CopyToOutputDirectory="PreserveNewest" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.AspNetCore.Rewrite" Version="1.0.0" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.0" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.0" />
|
||
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|