Files

26 lines
689 B
XML
Raw Permalink Normal View History

2023-12-23 15:08:47 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-12-23 21:05:07 +00:00
<TargetFramework>net8.0</TargetFramework>
2023-12-23 15:08:47 +00:00
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2024-01-25 15:17:37 +00:00
<PropertyGroup Condition=" $(NoVelopackApp) != '' ">
<DefineConstants>NO_VELO_BUILDER</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" $(UseAsyncMain) != '' ">
<DefineConstants>USE_ASYNC_MAIN</DefineConstants>
</PropertyGroup>
2023-12-23 15:08:47 +00:00
<ItemGroup>
<ProjectReference Include="..\..\src\lib-csharp\Velopack.csproj" />
2023-12-23 15:08:47 +00:00
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage" />
</ItemGroup>
2023-12-23 15:08:47 +00:00
</Project>