mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
41c03c30b5
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 :)
22 lines
674 B
XML
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>
|