39 lines
1.4 KiB
XML
39 lines
1.4 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>
|
|
<ApplicationIcon>Resources\Images\astroke.ico</ApplicationIcon>
|
|
<AssemblyName>aStroke</AssemblyName>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Resources\Images\astroke.ico" />
|
|
<None Remove="Resources\Images\placeholder.png" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!-- This overrides the default Program.Main that WPF creates for you, and allows you to add VelopackApp -->
|
|
<StartupObject>Astroke.Program</StartupObject>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="Resources\Images\astroke.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Resources\Images\placeholder.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Livia\Livia.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Views\Controls\AStrokeControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Views\Controls\AStrokeRoiSummaryControl.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project> |