forked from AAS-TwinEngine/AAS.TwinEngine.Plugin.DPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAAS.TwinEngine.Plugin.RelationalDatabase.UnitTests.csproj
More file actions
34 lines (28 loc) · 1.19 KB
/
AAS.TwinEngine.Plugin.RelationalDatabase.UnitTests.csproj
File metadata and controls
34 lines (28 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>IDE1006, IDE0058, CA2007, CA2201</NoWarn>
<!--IDE1006 - Naming rule violation: Missing suffix: 'Async'-->
<!--CA2007 - Do not directly await a Task-->
<!--IDE0058 - Expression value is never used-->
<!--CA2201 - Exception type can be specific-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="8.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="TngTech.ArchUnitNET.xUnit" Version="0.13.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AAS.TwinEngine.Plugin.RelationalDatabase\AAS.TwinEngine.Plugin.RelationalDatabase.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
</Project>