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
797 B
26 lines
797 B
2 years ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
|
||
2 years ago
|
<RootNamespace>Connected.Common.Types</RootNamespace>
|
||
2 years ago
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
||
|
<PackageReference Include="moq" Version="4.18.2" />
|
||
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
|
||
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
||
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
2 years ago
|
<ProjectReference Include="..\Connected.Common.Types\Connected.Common.Types.csproj" />
|
||
2 years ago
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|