-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathDestructurama.Attributed.Tests.csproj
More file actions
37 lines (32 loc) · 1.89 KB
/
Copy pathDestructurama.Attributed.Tests.csproj
File metadata and controls
37 lines (32 loc) · 1.89 KB
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
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net10.0;net462</TargetFrameworks>
<TargetFramework Condition="'$(OS)' != 'Windows_NT'">net10.0</TargetFramework>
<!--Microsoft.Extensions.Telemetry.Abstractions 10.1.0 doesn't support net462 and has not been tested with it. Consider upgrading your TargetFramework to net8.0 or later.-->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<DefineConstants>$(DefineConstants);CODE_GENERATION_ATTRIBUTES</DefineConstants> <!--Test with LogPropertyIgnoreAttribute requires it.-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.4" PrivateAssets="all" />
<PackageReference Include="MarkdownSnippets.MsBuild" Version="28.1.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Telemetry.Abstractions" Version="10.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit.Analyzers" Version="*" PrivateAssets="All" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageReference Include="PublicApiGenerator" Version="11.5.4" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="10.0.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/Destructurama.Attributed/Destructurama.Attributed.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="issue220.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>