| 1234567891011121314151617181920212223 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net8.0-windows7.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>	  <UseWPF>true</UseWPF>	  <Platforms>AnyCPU;x64</Platforms>  </PropertyGroup>  <ItemGroup>    <None Remove="Resources\JetPlasmaLogoCN.png" />    <None Remove="Resources\ProximaLogo.png" />  </ItemGroup>  <ItemGroup>    <Resource Include="Resources\JetPlasmaLogoCN.png" />    <Resource Include="Resources\JetPlasmaLogoEN.png" />    <Resource Include="Resources\ProximaLogo.png" />  </ItemGroup></Project>
 |