53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>adas_core.Test</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<AssemblyName>adas_core.Test</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AuditLogs" Version="1.0.57" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
|
<PackageReference Include="Microsoft.QualityTools.Testing.Fakes" Version="17.14.1" />
|
|
<PackageReference Include="Mongo2Go" Version="4.1.0" />
|
|
<PackageReference Include="MongoDB.Bson" Version="3.4.3" />
|
|
<PackageReference Include="Moq" Version="4.20.72" />
|
|
<PackageReference Include="NUnit" Version="4.4.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="5.1.0" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="4.10.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="MongoDB.Bson" Version="2.23.1" />>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\adas_core.Domain\adas_core.Domain.csproj" />
|
|
<ProjectReference Include="..\adas_core.Infrastructure\adas_core.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\adas_core\adas_core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Customizations\HUVH\UCIN\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|