Files

26 lines
696 B
XML
Raw Permalink Normal View History

2024-03-14 18:37:39 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2024-01-11 14:40:06 +00:00
<PropertyGroup>
<OutputType>WinExe</OutputType>
<AssemblyName>VelopackCSharpWpf</AssemblyName>
2024-01-25 15:17:07 +00:00
<TargetFramework>net48</TargetFramework>
2024-01-11 14:40:06 +00:00
<ImplicitUsings>true</ImplicitUsings>
<UseWPF>true</UseWPF>
2024-01-25 15:17:07 +00:00
</PropertyGroup>
<PropertyGroup>
<!-- This overrides the default Program.Main that WPF creates for you, and allows you to add VelopackApp -->
2024-11-20 22:19:39 -08:00
<StartupObject>CSharpWpf.App</StartupObject>
2024-01-11 14:40:06 +00:00
</PropertyGroup>
2024-11-20 22:19:39 -08:00
<ItemGroup>
<ApplicationDefinition Remove="App.xaml" />
<Page Include="App.xaml" />
</ItemGroup>
2024-01-11 14:40:06 +00:00
<ItemGroup>
<ProjectReference Include="..\..\src\lib-csharp\Velopack.csproj" />
2024-01-11 14:40:06 +00:00
</ItemGroup>
</Project>