26 lines
839 B
XML
26 lines
839 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<RootNamespace>VirtualChemistry.Test</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0"/>
|
|
<PackageReference Include="NUnit" Version="3.13.2"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0"/>
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0"/>
|
|
<PackageReference Include="Skeleton" Version="1.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Skeleton\Skeleton.csproj" />
|
|
<ProjectReference Include="..\VirtualChemistry\VirtualChemistry.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|