2024-06-16 13:57:50 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<VersionPrefix>2.0.0</VersionPrefix>
|
|
|
|
|
<BaseOutputPath>$(SolutionDir)build\products</BaseOutputPath>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MtClient\MtClient.csproj" />
|
|
|
|
|
</ItemGroup>
|
2014-10-31 09:05:52 +02:00
|
|
|
</Project>
|