mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>Patcher</RootNamespace>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Platforms>x86</Platforms>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="..\Patcher\ArmCompiler.cs">
|
|
<Link>ArmCompiler.cs</Link>
|
|
</Compile>
|
|
<Compile Include="..\Patcher\ByteOperations.cs">
|
|
<Link>ByteOperations.cs</Link>
|
|
</Compile>
|
|
<Compile Include="..\Patcher\HelperClasses.cs">
|
|
<Link>HelperClasses.cs</Link>
|
|
</Compile>
|
|
<Compile Include="..\Patcher\ObjectFileParser.cs">
|
|
<Link>ObjectFileParser.cs</Link>
|
|
</Compile>
|
|
<Compile Include="..\Patcher\PatchEngine.cs">
|
|
<Link>PatchEngine.cs</Link>
|
|
</Compile>
|
|
<Compile Include="..\Patcher\PeFile.cs">
|
|
<Link>PeFile.cs</Link>
|
|
</Compile>
|
|
<None Include="..\Patcher\LICENSE">
|
|
<Link>LICENSE</Link>
|
|
</None>
|
|
<None Update="BootUnllockAndRootAccessPatchScript.pds">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Gee.External.Capstone" Version="2.0.2" />
|
|
</ItemGroup>
|
|
</Project> |