mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
23 lines
697 B
XML
Executable File
23 lines
697 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="MtApi5">
|
|
<HintPath>..\..\..\build\products\Release\net8.0\MtApi5.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="MtClient">
|
|
<HintPath>..\..\..\build\products\Release\net8.0\MtClient.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>..\..\..\build\products\Release\net8.0\Newtonsoft.Json.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|