-
Notifications
You must be signed in to change notification settings - Fork 0
/
DDSS.NewYorkElevator.csproj
73 lines (72 loc) · 2.52 KB
/
DDSS.NewYorkElevator.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net60</TargetFrameworks>
<LangVersion>Latest</LangVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>Output\$(Configuration)\</OutputPath>
<OutputType>Library</OutputType>
<RootNamespace>DDSS_NewYorkElevator</RootNamespace>
<Platforms>AnyCPU</Platforms>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Components\**" />
<Compile Remove="Libs\**" />
<Compile Remove="Output\**" />
<EmbeddedResource Remove="Components\**" />
<EmbeddedResource Remove="Libs\**" />
<EmbeddedResource Remove="Output\**" />
<None Remove="Components\**" />
<None Remove="Libs\**" />
<None Remove="Output\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE.md" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HarmonyX" Version="2.13.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="LavaGang.MelonLoader" Version="0.6.4">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Il2CppInterop.Runtime" Version="1.4.5">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>Libs\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="DDSS.ModHelper">
<HintPath>Libs\DDSS.ModHelper.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Il2CppMirror">
<HintPath>Libs\Il2CppMirror.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>Libs\Il2Cppmscorlib.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Il2CppSystem">
<HintPath>Libs\Il2CppSystem.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Unity.TextMeshPro">
<HintPath>Libs\Unity.TextMeshPro.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>Libs\UnityEngine.CoreModule.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>