You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
842 B
26 lines
842 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\APILOL\APILOL.csproj" />
|
|
<ProjectReference Include="..\DTO\DTO.csproj" />
|
|
<ProjectReference Include="..\StubLib\StubLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|