15 lines
410 B
XML
15 lines
410 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="3.0.3" />
|
|||
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
|||
|
|
<ProjectReference Include="..\..\src\csharp.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
</Project>
|