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>
|
2021-11-19 09:26:03 +00:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2020-12-21 02:02:06 +00:00
|
|
|
|
</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-08-25 08:52:08 +00:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
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>
|
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>
|