mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-08-13 16:53:35 +00:00
20 lines
623 B
XML
20 lines
623 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\SteamShared\LoreSoft.MathExpressions\LoreSoft.MathExpressions.csproj" />
|
|
<ProjectReference Include="..\..\SteamShared\SteamShared\SteamShared\SteamShared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|