-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarbon.Client.V2.csproj
122 lines (115 loc) · 4.48 KB
/
Carbon.Client.V2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Build">
<Import Project="Environment.targets" />
<PropertyGroup>
<Product>Carbon.Client.V2</Product>
<Title>C4C</Title>
<OutputType>Library</OutputType>
<Configurations>Debug;Release</Configurations>
<LangVersion>preview</LangVersion>
<TargetFramework>net48</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Version>2.0.0</Version>
<ImplicitUsings>disable</ImplicitUsings>
<Platforms>x64</Platforms>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize>
<DefineConstants>$(DefineConstants)</DefineConstants>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">x64</Platform>
<PlatformTarget>AnyCPU</PlatformTarget>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Linq">
<Private>false</Private>
</Reference>
<Reference Include="System.Core">
<Private>false</Private>
</Reference>
<Reference Include="System.Data">
<Private>false</Private>
</Reference>
<Reference Include="System.Runtime">
<Private>false</Private>
</Reference>
<Reference Include="System.Memory">
<Private>false</Private>
</Reference>
<Reference Include="System.IO">
<Private>false</Private>
</Reference>
<Reference Include="System.IO.FileSystem.Watcher">
<Private>false</Private>
</Reference>
<Reference Include="System.Drawing">
<Private>false</Private>
</Reference>
<Reference Include="System.ComponentModel.Primitives">
<Private>false</Private>
</Reference>
<Reference Include="System.Globalization">
<Private>false</Private>
</Reference>
<Reference Include="System.Management">
<Private>false</Private>
</Reference>
<Reference Include="System.Net.Http">
<Private>false</Private>
</Reference>
<Reference Include="System.Xml.Linq">
<Private>false</Private>
</Reference>
<Reference Include="System.Xml.Serialization">
<Private>false</Private>
</Reference>
<Reference Include="System.Xml">
<Private>false</Private>
</Reference>
<Reference Include="System.Console">
<Private>false</Private>
</Reference>
<Reference Include="System">
<Private>false</Private>
</Reference>
<Reference Include="netstandard">
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Reference Include="$(CarbonRootPath)\managed\*.dll">
<Private>false</Private>
</Reference>
<Reference Include="$(RustClientRootPath)\BepInEx\core\*.dll" Exclude="$(RustClientRootPath)\BepInEx\core\Carbon*.dll;$(RustClientRootPath)\BepInEx\core\dobby.dll;$(RustClientRootPath)\BepInEx\core\Microsoft*.dll;$(RustClientRootPath)\BepInEx\core\Ben*.dll;$(RustClientRootPath)\BepInEx\core\System*.dll">
<Private>false</Private>
</Reference>
<Reference Include="$(RustClientRootPath)\BepInEx\interop\*.dll" Exclude="$(RustClientRootPath)\BepInEx\interop\Newtonsoft.Json.dll">
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="*" />
<PackageReference Include="Ben.Demystifier" Version="*" />
<PackageReference Include="BouncyCastle.Cryptography" Version="*" />
<PackageReference Include="Microsoft.CSharp" Version="*" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" />
<PackageReference Update="Microsoft.Unity.Analyzers" Version="1.19.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Include="src/**/*.cs" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="packages\Microsoft.CodeAnalysis.Analyzers.3.11.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
<Analyzer Include="packages\Microsoft.CodeAnalysis.Analyzers.3.11.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
</ItemGroup>
</Project>