generated from dailydevops/dotnet-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (21 loc) · 1.1 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project>
<PropertyGroup Label="Package settings">
<Title>$(MSBuildProjectName)</Title>
<Description>Extensions for `ILogger` implementations to log messages to xUnit test output.</Description>
<RepositoryUrl>https://github.com/dailydevops/logging.xunit</RepositoryUrl>
<PackageProjectUrl>https://github.com/dailydevops/logging.xunit.git</PackageProjectUrl>
<PackageReleaseNotes>$(RepositoryUrl)/releases/tag/$(Version)</PackageReleaseNotes>
<PackageTags>logging;provider;xunit</PackageTags>
<CopyrightYearStart>2024</CopyrightYearStart>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup>
<ProjectTargetFrameworks>net6.0;net7.0;net8.0;net9.0</ProjectTargetFrameworks>
<TestTargetFrameworks>net6.0;net7.0;net8.0;net9.0</TestTargetFrameworks>
<DisableBannedApiForUTC>true</DisableBannedApiForUTC>
</PropertyGroup>
<PropertyGroup>
<!-- Workaround, until https://github.com/GitTools/GitVersion/pull/4206 is released -->
<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
</PropertyGroup>
</Project>