28 lines
644 B
XML
28 lines
644 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
<DocumentationFile>Ewide.Application.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="applicationsettings.json" />
|
|
<None Remove="Ewide.Application.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="applicationsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ewide.Core\Ewide.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
</ItemGroup>
|
|
|
|
</Project>
|