| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <OutputType>WinExe</OutputType>    <Nullable>enable</Nullable>    <UseWPF>true</UseWPF>    <ApplicationIcon>reversed.ico</ApplicationIcon>    <TargetFramework>net8.0-windows</TargetFramework>    <Configurations>Debug;Release;Test;DebugDev</Configurations>    <Platforms>AnyCPU;x64</Platforms>  </PropertyGroup>  <ItemGroup>    <None Remove="Resources\splash-small.png" />    <None Remove="dependencies\**" />    <None Remove="CodeDependencies.iss" />    <None Remove="._dependencies" />    <None Remove="._.DS_Store" />    <None Remove="._CodeDependencies.iss" />    <None Remove="._PRSLicensing.iss" />    <None Remove="PRSLicensing.iss" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Fody" Version="6.8.1">      <PrivateAssets>all</PrivateAssets>      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>    </PackageReference>    <PackageReference Include="H.Formatters.BinaryFormatter" Version="2.0.59" />    <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />    <PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />    <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />    <ProjectReference Include="..\prs.services\PRSServices.csproj" />    <ProjectReference Include="..\prs.shared\PRS.Shared.csproj" />  </ItemGroup>  <ItemGroup>    <Resource Include="Resources\splash-small.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\costsheettype.png" />    <Resource Include="Resources\settings.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\service.png" />    <None Remove="Resources\tick.png" />    <None Remove="Resources\add.png" />    <None Remove="Resources\generate.png" />    <Resource Include="Resources\generate.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\install.png" />    <Resource Include="Resources\install.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\start.png" />    <Resource Include="Resources\start.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\stop.png" />    <Resource Include="Resources\stop.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>    <None Remove="Resources\uninstall.png" />    <Resource Include="Resources\uninstall.png">      <CopyToOutputDirectory>Always</CopyToOutputDirectory>    </Resource>  </ItemGroup>  <ItemGroup>    <Compile Update="Engine\PRSLicensingService.cs" />    <Compile Update="Resources.Designer.cs">      <DependentUpon>Resources.resx</DependentUpon>      <DesignTime>True</DesignTime>      <AutoGen>True</AutoGen>    </Compile>    <Compile Remove="dependencies\**" />  </ItemGroup>  <ItemGroup>    <EmbeddedResource Update="Resources.resx">      <LastGenOutput>Resources.Designer.cs</LastGenOutput>      <Generator>ResXFileCodeGenerator</Generator>    </EmbeddedResource>    <EmbeddedResource Remove="dependencies\**" />  </ItemGroup>  <ItemGroup>    <Page Remove="dependencies\**" />  </ItemGroup></Project>
 |