Files

61 lines
2.6 KiB
XML
Raw Permalink Normal View History

2023-12-17 17:00:38 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Project>
2024-12-23 14:29:32 +00:00
<PropertyGroup>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<CurrentOsName>Windows</CurrentOsName>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
<CurrentOsName>Linux</CurrentOsName>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
<CurrentOsName>OSX</CurrentOsName>
</PropertyGroup>
2023-12-23 11:10:42 +00:00
<PropertyGroup Condition=" $(MSBuildProjectName.EndsWith('Tests')) ">
2023-12-17 17:00:38 +00:00
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<IsTest>true</IsTest>
2024-01-04 13:49:41 +00:00
<NoWarn>$(NoWarn);CS1998,xUnit2015,xUnit2017,xUnit2005,xUnit2009,xUnit2013,xUnit1013,xUnit2004;CA2007;CS8002</NoWarn>
2023-12-17 17:00:38 +00:00
<SignAssembly>True</SignAssembly>
2023-12-31 10:59:34 +00:00
<AssemblyOriginatorKeyFile>..\..\Velopack.snk</AssemblyOriginatorKeyFile>
2023-12-17 17:00:38 +00:00
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2023-12-23 11:10:42 +00:00
<PropertyGroup Condition=" $(MSBuildProjectName.EndsWith('Tests')) and $(CI) != '' ">
2023-12-23 22:39:55 +00:00
<CoverletOutputFormat>cobertura</CoverletOutputFormat>
<CoverletOutput>..\coverage.$(CurrentOsName).$(MSBuildProjectName).xml</CoverletOutput>
2024-01-09 12:08:40 +00:00
<Include>[Velopack*]*,[vpk*]*</Include>
2023-12-31 10:59:34 +00:00
<Exclude>[Velopack.*.Tests]*,[*]Microsoft*</Exclude>
2023-12-23 11:10:42 +00:00
<CollectCoverage>true</CollectCoverage>
2023-12-17 17:00:38 +00:00
</PropertyGroup>
2023-12-23 11:10:42 +00:00
<ItemGroup Condition=" $(MSBuildProjectName.EndsWith('Tests')) ">
2023-12-17 17:00:38 +00:00
<Compile Include="..\GlobalUsings.cs" Link="GlobalUsings.cs" />
<Compile Include="..\PathHelper.cs" Link="PathHelper.cs" />
2023-12-17 17:00:38 +00:00
</ItemGroup>
2023-12-23 11:10:42 +00:00
<ItemGroup Condition=" $(MSBuildProjectName.EndsWith('Tests')) ">
2025-02-15 01:46:29 +00:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
2024-12-27 01:54:08 +00:00
<PackageReference Include="Neovolve.Logging.Xunit.Signed" Version="6.3.0" />
2023-12-17 17:00:38 +00:00
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
2025-01-10 02:50:38 +00:00
<PackageReference Include="xunit" Version="2.9.3" />
2024-12-20 17:26:25 +00:00
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2024-12-20 15:38:52 +00:00
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
2025-01-30 00:26:19 +00:00
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
2023-12-21 14:01:41 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
2024-10-12 17:43:54 +00:00
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1">
2024-05-24 14:02:20 +01:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
2023-12-17 17:00:38 +00:00
</ItemGroup>
</Project>