Files
my-Mt5Bridge/Mt5Bridge.csproj
2026-07-03 15:30:55 +08:00

25 lines
663 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="MtApi5">
<HintPath>libs\MtApi5.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="MtClient">
<HintPath>libs\MtClient.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>libs\Newtonsoft.Json.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
</Project>