Udara/UdaraWindows/UdaraWindows.csproj
2026-03-19 11:53:15 +08:00

28 lines
832 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>UdaraWindows.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="UdaraWindows.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="UdaraWindows.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3537.50" />
<FrameworkReference Include="Microsoft.WindowsDesktop.App" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
</ItemGroup>
</Project>