-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperMetroidRandomizer.csproj
26 lines (21 loc) · 1.11 KB
/
SuperMetroidRandomizer.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>11.0</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<Authors>SilkyKitsune</Authors>
<RunPostBuildEvent>Always</RunPostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(ProjectDir)Patches\TorizoBombBlocksFix.ips" "$(TargetDir)" /Y
xcopy "$(ProjectDir)Patches\PirateShaftDropBlocksFix.ips" "$(TargetDir)" /Y
xcopy "$(ProjectDir)Patches\LandingSitePowerDoorFix.ips" "$(TargetDir)" /Y
xcopy "$(ProjectDir)Patches\TourianShort.ips" "$(TargetDir)" /Y" />
</Target>
<ItemGroup>
<ProjectReference Include="..\..\IPS\IPSLib\IPSLib.csproj" />
</ItemGroup>
</Project>