DisplayMagician/HeliosPlus.Tests1/HeliosPlus.Tests.csproj
terrymacdonald 41c03c30b5 Saving initial MSTest configuration
First part of installing an MSTest suite.
Included some config file to read in
for testing the ShortcutRepository and
the ProfileRepository. Had the data
handy so it made sense to save it :)
2020-07-26 20:52:46 +12:00

22 lines
674 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HeliosPlus.Reporting\HeliosPlus.Reporting.csproj" />
<ProjectReference Include="..\HeliosPlus.Shared\HeliosPlus.Shared.csproj" />
<ProjectReference Include="..\HeliosPlus\HeliosPlus.csproj" />
</ItemGroup>
</Project>