mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
57 lines
2.3 KiB
XML
57 lines
2.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;x64</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</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" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
</ItemGroup>
|
|
</Project> |