2020-11-16 08:23:05 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2020-07-26 08:52:46 +00:00
|
|
|
|
<PropertyGroup>
|
2020-11-16 08:23:05 +00:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-12-05 08:40:20 +00:00
|
|
|
|
|
|
|
|
|
<ApplicationIcon>DisplayMagician.ico</ApplicationIcon>
|
2020-07-26 08:52:46 +00:00
|
|
|
|
</PropertyGroup>
|
2020-11-16 08:23:05 +00:00
|
|
|
|
|
2020-12-21 02:02:06 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-07-26 08:52:46 +00:00
|
|
|
|
<ItemGroup>
|
2021-04-30 05:54:04 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
|
|
|
<PackageReference Include="nunit" Version="3.13.2" />
|
2021-03-11 21:09:35 +00:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
2021-04-30 05:54:04 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
2020-07-26 08:52:46 +00:00
|
|
|
|
</ItemGroup>
|
2020-11-16 08:23:05 +00:00
|
|
|
|
|
2020-07-26 08:52:46 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-03 06:27:54 +00:00
|
|
|
|
<ProjectReference Include="..\DisplayMagicianLogReporter\DisplayMagicianLogReporter.csproj" />
|
2020-12-20 07:42:04 +00:00
|
|
|
|
<ProjectReference Include="..\DisplayMagicianShared\DisplayMagicianShared.csproj" />
|
2020-12-02 08:11:23 +00:00
|
|
|
|
<ProjectReference Include="..\DisplayMagician\DisplayMagician.csproj" />
|
2020-07-26 08:52:46 +00:00
|
|
|
|
</ItemGroup>
|
2020-11-16 08:23:05 +00:00
|
|
|
|
|
|
|
|
|
</Project>
|