30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="wwwroot\favicon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
<None Include="wwwroot\favicon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.WindowsForms" Version="8.0.90" />
|
|
<PackageReference Include="NLog" Version="5.3.4" />
|
|
<PackageReference Include="System.Text.Json" Version="8.0.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EgwControlCenter.Core\EgwControlCenter.Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Update="ConfPatrol.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project> |