forked from Krythom/MiniDebug
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMiniDebug.csproj
More file actions
35 lines (32 loc) · 1.22 KB
/
Copy pathMiniDebug.csproj
File metadata and controls
35 lines (32 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>MiniDebug</RootNamespace>
<AssemblyName>MiniDebug</AssemblyName>
<OutputType>Library</OutputType>
<TargetFramework>net35</TargetFramework>
<LangVersion>latest</LangVersion>
<AssemblyTitle>HK 1028 Mini Debug</AssemblyTitle>
<Product>HK 1028 Mini Debug</Product>
<OutputPath>bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\References1028\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="PlayMaker">
<HintPath>..\..\References1028\PlayMaker.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\References1028\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\..\References1028\UnityEngine.UI.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="C:\Program Files (x86)\Steam\steamapps\common\Hollow Knight 1028\hollow_knight_Data\Managed\Mods" />
</Target>
</Project>