-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCustomPlugin.csproj
More file actions
42 lines (37 loc) · 1.49 KB
/
CustomPlugin.csproj
File metadata and controls
42 lines (37 loc) · 1.49 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
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<OutputPath>$(ProjectDir)..\BuildOutput\plugins\CustomPlugin\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.333" />
<PackageReference Include="Json.Net" Version="1.0.33" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Nexd.MySQL" Version="1.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="CounterStrikeSharp.API">
<HintPath>YOUR CSSHARP FOLDER DESTINATION HERE /_dependencies/CounterStrikeSharp.API.dll</HintPath>
</Reference>
<Reference Include="StoreApi">
<HintPath>..\StoreApi.dll</HintPath>
</Reference>
<Reference Include="WASDSharedAPI">
<HintPath>..\WASDSharedAPI.dll</HintPath>
</Reference>
<Reference Include="TagsApi">
<HintPath>..\TagsApi.dll</HintPath>
</Reference>
<Reference Include="CS2MenuManager">
<HintPath>..\CS2MenuManager.dll</HintPath>
</Reference>
<Reference Include="VIPSharedApi">
<HintPath>..\VIPApi.dll</HintPath>
</Reference>
</ItemGroup>
</Project>