forked from Arkhist/Hacknet-Pathfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pathfinder.csproj
102 lines (102 loc) · 4.1 KB
/
Pathfinder.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F321B880-D4FC-4DF6-8CE3-666B29EF41C7}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Pathfinder</RootNamespace>
<AssemblyName>Pathfinder</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<PlatformTarget>x86</PlatformTarget>
<CustomCommands>
<CustomCommands>
<Command>
<type>BeforeBuild</type>
<command>PathfinderPatcher -exeDir "C:\Program Files (x86)\Steam\steamapps\common\Hacknet" -spit</command>
<externalConsole>True</externalConsole>
</Command>
<Command>
<type>AfterBuild</type>
<command>lib\PathfinderPatcher.exe -pathfinderDir "..\bin\Release" -exeDir "C:\Program Files (x86)\Steam\steamapps\common\Hacknet"</command>
<workingdir>lib\</workingdir>
<externalConsole>True</externalConsole>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<PlatformTarget>x86</PlatformTarget>
<CustomCommands>
<CustomCommands>
<Command>
<type>BeforeBuild</type>
<command>lib\PathfinderPatcher.exe -exeDir "C:\Program Files (x86)\Steam\steamapps\common\Hacknet" -spit</command>
<workingdir>lib\</workingdir>
<externalConsole>True</externalConsole>
</Command>
<Command>
<type>AfterBuild</type>
<command>lib\PathfinderPatcher.exe -pathfinderDir "..\bin\Release" -exeDir "C:\Program Files (x86)\Steam\steamapps\common\Hacknet"</command>
<workingdir>lib\</workingdir>
<externalConsole>True</externalConsole>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="AlienFXManagedWrapper3.5">
<HintPath>lib\AlienFXManagedWrapper3.5.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FNA">
<HintPath>lib\FNA.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Steamworks.NET">
<HintPath>lib\Steamworks.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HacknetPathfinder">
<HintPath>lib\HacknetPathfinder.exe</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Pathfinder\CommandHandler.cs" />
<Compile Include="Pathfinder\Event\BasicEvents.cs" />
<Compile Include="Pathfinder\Event\DrawEvent.cs" />
<Compile Include="Pathfinder\Event\EventManager.cs" />
<Compile Include="Pathfinder\Event\PathfinderEvent.cs" />
<Compile Include="Pathfinder\Gui\PathfinderMainMenu.cs" />
<Compile Include="Pathfinder\Pathfinder.cs" />
<Compile Include="Pathfinder\PathfinderMod.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Pathfinder\PathfinderHooks.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>