24 lines
750 B
XML
24 lines
750 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
|
|
<!-- Assembly info generation -->
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
<Product>Conjure Arcade Overlay</Product>
|
|
<AssemblyName>Conjure.Arcade.Overlay</AssemblyName>
|
|
<Version>1.0.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Resources\placeholder_logo.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project> |