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>
|
2024-08-06 22:56:40 +01:00
|
|
|
<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>
|
2025-03-03 21:57:57 +00:00
|
|
|
<ProjectReference Include="..\..\src\lib-csharp\Velopack.csproj" />
|
2024-01-11 14:40:06 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|