2017-03-08 06:17:59 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-07-31 22:58:27 +02:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-03-08 06:17:59 +01:00
|
|
|
|
<AssemblyName>Mail</AssemblyName>
|
2017-03-18 23:52:44 +01:00
|
|
|
|
<RootNamespace>Bit.Mail</RootNamespace>
|
2017-03-08 06:17:59 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="wwwroot\**\*">
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-05-09 19:33:09 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />
|
2017-03-08 06:17:59 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|