35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyName>ClaudeChecker</AssemblyName>
|
|
<RootNamespace>ClaudeCheckerWindows</RootNamespace>
|
|
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
|
|
<Version>1.0.0</Version>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<!-- WinForms referenced explicitly so NotifyIcon is available without polluting global namespace -->
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2651.64"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Assets\icon.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Assets\icon.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|