-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncryptedConfigValue.Cli.Test.csproj
More file actions
32 lines (27 loc) · 1.17 KB
/
Copy pathEncryptedConfigValue.Cli.Test.csproj
File metadata and controls
32 lines (27 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="Xunit.CollectionBehavior">
<DisableTestParallelization>true</DisableTestParallelization>
<DisableTestParallelization_IsLiteral>true</DisableTestParallelization_IsLiteral>
<DisableTestParallelization_TypeName>System.Boolean</DisableTestParallelization_TypeName>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="8.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EncryptedConfigValue.Cli\EncryptedConfigValue.Cli.csproj" />
<ProjectReference Include="..\EncryptedConfigValue\EncryptedConfigValue.csproj" />
</ItemGroup>
</Project>