|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 |
| - |
3 | 2 | <PropertyGroup>
|
4 | 3 | <TargetFrameworks>net48;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
|
5 | 4 | <IsPackable>false</IsPackable>
|
6 | 5 | <IsTestProject>true</IsTestProject>
|
7 | 6 | <OutputType>Exe</OutputType>
|
8 | 7 | </PropertyGroup>
|
9 |
| - |
10 | 8 | <PropertyGroup>
|
11 | 9 | <OutputPath>bin\</OutputPath>
|
12 | 10 | <DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
|
|
16 | 14 | <Authors>The Production Tools Team</Authors>
|
17 | 15 | <Copyright>Copyright 2025 National Technology &amp; Engineering Solutions of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S. Government retains certain rights in this software.</Copyright>
|
18 | 16 | </PropertyGroup>
|
19 |
| - |
20 | 17 | <PropertyGroup>
|
21 | 18 | <!-- Allowing usage of unsafe binary formatting for the sake of Duid.ISerializableTests.cs; Allowing as this due for the sake of testing, using ISerializable should likley be avoided -->
|
22 | 19 | <EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
23 | 20 | <!-- Ignoring end of life targets as we want to be sure that targets still pass tests -->
|
24 | 21 | <CheckEolTargetFramework>false</CheckEolTargetFramework>
|
25 | 22 | </PropertyGroup>
|
26 |
| - |
27 | 23 | <ItemGroup>
|
28 | 24 | <!-- Nest Duid.*Tests.cs under DuidTests.cs -->
|
29 | 25 | <Compile Update="Duid.IComparableTests.cs">
|
|
48 | 44 | <DependentUpon>DuidTests.cs</DependentUpon>
|
49 | 45 | </Compile>
|
50 | 46 | </ItemGroup>
|
51 |
| - |
52 | 47 | <ItemGroup>
|
53 | 48 | <AdditionalFiles Include="..\stylecop.json">
|
54 | 49 | <Link>stylecop.json</Link>
|
55 | 50 | </AdditionalFiles>
|
56 | 51 | </ItemGroup>
|
57 |
| - |
58 | 52 | <ItemGroup>
|
59 | 53 | <ProjectReference Include="..\NetDuid\NetDuid.csproj" />
|
60 | 54 | </ItemGroup>
|
61 |
| - |
62 | 55 | <ItemGroup Condition="'$(TargetFramework)' == 'net48'">
|
63 | 56 | <Reference Include="System.Runtime.Serialization.Formatters.Soap" />
|
64 | 57 | </ItemGroup>
|
65 |
| - |
66 | 58 | <ItemGroup>
|
67 | 59 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
68 | 60 | <PackageReference Include="coverlet.collector" Version="6.0.4" />
|
69 |
| - <PackageReference Include="xunit.v3" Version="2.0.0" /> |
| 61 | + <PackageReference Include="xunit.v3" Version="2.0.1" /> |
70 | 62 | <PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
|
71 | 63 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
72 | 64 | <PrivateAssets>all</PrivateAssets>
|
73 | 65 | </PackageReference>
|
74 | 66 | </ItemGroup>
|
75 |
| - |
76 | 67 | <ItemGroup>
|
77 | 68 | <PackageReference Include="Roslynator.Analyzers" Version="4.13.1">
|
78 | 69 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
95 | 86 | <PrivateAssets>all</PrivateAssets>
|
96 | 87 | </PackageReference>
|
97 | 88 | </ItemGroup>
|
98 |
| - |
99 | 89 | </Project>
|
0 commit comments