mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
5dae1da560
- WPinternals is now a .NET Core 3.0 application - Implemented new unlock process for Spec A devices - Updated logic for unlocking Spec B devices - Implemented MMOS support for Spec B devices - Implemented battery status in Flash Mode - Implemented Fuse configuration information in Flash Mode - Implemented Reboot from mass storage for Spec A and some Spec B devices - Implemented shutdown from flash mode (preliminary) - Fixed label mode support for Spec B
53 lines
1.7 KiB
XML
53 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
<AssemblyName>WPinternals</AssemblyName>
|
|
<RootNamespace>WPinternals</RootNamespace>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>WPinternals.ico</ApplicationIcon>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Deterministic>False</Deterministic>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<StartupObject>WPinternals.App</StartupObject>
|
|
<AssemblyOriginatorKeyFile>Heathcliff74.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<AssemblyOriginatorKeyFile>Heathcliff74.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Logo.png" />
|
|
<Resource Include="WPinternals.ico" />
|
|
<Resource Include="aerobusy.gif" />
|
|
<Resource Include="Logo-Small.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Windows.Compatibility" Version="3.0.0-preview7.19362.9" />
|
|
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="PatchDefinitions.xml" />
|
|
<Content Remove="SB" />
|
|
<Content Remove="SBMSM" />
|
|
<Content Remove="SBA" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="PatchDefinitions.xml" />
|
|
<EmbeddedResource Include="SB" />
|
|
<EmbeddedResource Include="SBMSM" />
|
|
<EmbeddedResource Include="SBA" />
|
|
</ItemGroup>
|
|
|
|
</Project> |