mirror of
https://github.com/logos-co/velopack.git
synced 2026-08-31 13:41:07 +00:00
* Rename avalonia & wpf samples * Rename rest of samples * fix sample readme * Fix compat util tests * rename / move all src projects * remove package lock files and move libC# again * Add rust lib and cargo workspace * Replace locksmith lib with new filelocksmith-rs library * Deprecated type * fix setup compile * Use thiserror for error handling * Rename some enums and formatting * Add missing SHA256 * wip c++ library * cpp wip * alphabetize readme * Try to get build working again * Fix some conditionally compiled bits * cross config should be in workspace root * Fix PathHelper for new rust target dir * Missed one old path to velopack.csproj * remove obsolete coverage code * testawareapp.exe no longer exists
22 lines
764 B
XML
22 lines
764 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<AssemblyName>VelopackCSharpWpf</AssemblyName>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<ImplicitUsings>true</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- This overrides the default Program.Main that WPF creates for you, and allows you to add VelopackApp -->
|
|
<StartupObject>CSharpWpf.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!--Condition below is only needed to test this sample project against the local projects instead of the NuGet package. Remove it in your app.-->
|
|
<PackageReference Include="Velopack" Version="0.*" Condition="$(UseLocalVelopack) == ''" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|