-
Notifications
You must be signed in to change notification settings - Fork 2
/
CarbonCommunity.Client.csproj
34 lines (29 loc) · 1.22 KB
/
CarbonCommunity.Client.csproj
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
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;RUST;CARBON;CLIENT</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;RUST;CARBON;CLIENT</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Roslynator.CSharp" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="..\..\..\..\..\Software\Steam\steamapps\common\RustStaging\BepInEx\core\*.dll" />
<Reference Include="..\..\..\..\..\Software\Steam\steamapps\common\RustStaging\BepInEx\interop\*.dll" />
</ItemGroup>
</Project>