25 lines
575 B
XML
25 lines
575 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<Content Include="favicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Timelapse\Timelapse.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Platform.Wpf" Version="2.7.0" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
</PropertyGroup>
|
|
|
|
</Project>
|