mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-02-12 22:08:39 +00:00
22 lines
646 B
XML
22 lines
646 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
<PackageReference Include="NLog" Version="4.6.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|