-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopyCode.csproj
More file actions
39 lines (35 loc) · 1.48 KB
/
CopyCode.csproj
File metadata and controls
39 lines (35 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- BepInEx Properties -->
<PropertyGroup>
<AssemblyName>CopyCode</AssemblyName>
<Product>CopyCode</Product>
<Authors>WarperSan</Authors>
<Description></Description>
</PropertyGroup>
<!-- Project Properties -->
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>CopyCode</RootNamespace>
</PropertyGroup>
<!-- Paths -->
<PropertyGroup>
<SteamPath>/home/warpersan/.steam/steam</SteamPath>
<GamePath>$(SteamPath)/steamapps/common/The Farmer Was Replaced</GamePath>
<ManagedPath>$(GamePath)/TheFarmerWasReplaced_Data/Managed</ManagedPath>
<BepInExPath>$(GamePath)/BepInEx</BepInExPath>
<PluginsPath>$(BepInExPath)/plugins</PluginsPath>
</PropertyGroup>
<!-- Packages -->
<ItemGroup>
<PackageReference Include="BepInEx.Core" Version="5.*" PrivateAssets="all"/>
<PackageReference Include="UnityEngine.Modules" Version="2022.3.9" IncludeAssets="compile" PrivateAssets="all"/>
<PackageReference Include="MinVer" Version="6.*" PrivateAssets="all"/>
<Reference Include="$(ManagedPath)/Core.dll"/>
<Reference Include="$(ManagedPath)/Utils.dll"/>
<Reference Include="$(ManagedPath)/UnityEngine.UI.dll"/>
</ItemGroup>
<ItemGroup>
<None Remove="Resources\copy-icon.png" />
<EmbeddedResource Include="Resources\copy-icon.png" />
</ItemGroup>
</Project>