-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (23 loc) · 1.36 KB
/
Directory.Build.props
File metadata and controls
23 lines (23 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<Title>$(PackageId)</Title>
<Description>This library provides various compatibility features between `NUnit`, `XUnit`, `XUnit.V3`, `TUnit` and `MSTest`.</Description>
<CopyrightYearStart>2023</CopyrightYearStart>
<PackageProjectUrl>https://github.com/dailydevops/extensions.test</PackageProjectUrl>
<RepositoryUrl>https://github.com/dailydevops/extensions.test.git</RepositoryUrl>
<PackageReleaseNotes>$(PackageProjectUrl)/releases/</PackageReleaseNotes>
<PackageTags>compatibility;test;category;categories;culture;workitems</PackageTags>
<!-- Project is not a test project -->
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<None Include="..\_snapshots\**\*.*" Link="_sharedSnapshots\%(RecursiveDir)%(Filename)%(Extension)" Visible="" />
</ItemGroup>
<PropertyGroup>
<NetEvolve_LTSTargetFrameworks>net8.0;net9.0;net10.0</NetEvolve_LTSTargetFrameworks>
<NetEvolve_ProjectTargetFrameworks>netstandard2.0;$(NetEvolve_LTSTargetFrameworks)</NetEvolve_ProjectTargetFrameworks>
<NetEvolve_TestTargetFrameworks>$(NetEvolve_LTSTargetFrameworks)</NetEvolve_TestTargetFrameworks>
<NoWarn Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(NoWarn);CA1062;</NoWarn>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
</Project>