23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
|
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win7-x86;win7-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.AspNetCoreModule" />
|
|
<PackageReference Include="Microsoft.AspNetCore.ResponseCompression" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.HttpSys" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
|
|
<PackageReference Include="Microsoft.Net.Http.Headers" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|