-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOgar-CSharp.csproj
More file actions
33 lines (29 loc) · 1.17 KB
/
Copy pathOgar-CSharp.csproj
File metadata and controls
33 lines (29 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Ogar_CSharp</RootNamespace>
<PublishTrimmed>true</PublishTrimmed>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<StartupObject>Ogar_CSharp.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>false</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Remove="Ogar-CSharp.exe" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="KdTree" Version="1.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="RBush" Version="3.1.0" />
<PackageReference Include="VIEApps.Components.WebSockets" Version="10.3.2004.24" />
</ItemGroup>
</Project>