25 lines
594 B
XML
25 lines
594 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
<Platforms>AnyCPU;x64</Platforms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="System.Collections" Version="4.3.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\FarmmapsApi\FarmmapsApi.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="DownloadCLInput.json">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|