19 lines
465 B
XML
19 lines
465 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<Authors>Ilyx</Authors>
|
|
<Description>Broker of the PlantBox project</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PlantBox.Shared\PlantBox.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|