31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<!-- Needed for System.Windows.Forms.Screen (multi-monitor working areas) -->
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AssemblyName>ClaudeOverview</AssemblyName>
|
|
<RootNamespace>ClaudeOverview</RootNamespace>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
<!-- The WinForms DPI analyzer warns about dpiAware in the manifest, but for a
|
|
WPF app the manifest is the correct place to declare PerMonitorV2. Silence it. -->
|
|
<NoWarn>$(NoWarn);WFAC010</NoWarn>
|
|
<!-- NOTE: build output is redirected to a local drive in Directory.Build.props
|
|
(it must be set before the SDK imports), because Windows refuses to execute
|
|
binaries stored on the \\wsl.localhost share. -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Ship the default config next to the exe; don't overwrite a user-edited one -->
|
|
<None Update="config.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|