| 123456789101112131415161718192021222324252627 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <OutputType>WinExe</OutputType>    <TargetFramework>net8.0-windows</TargetFramework>    <Nullable>enable</Nullable>    <ImplicitUsings>enable</ImplicitUsings>    <UseWPF>true</UseWPF>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="Prism.DryIoc" />    <PackageReference Include="CommunityToolkit.Mvvm" />    <PackageReference Include="Hardcodet.NotifyIcon.Wpf" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\Data\GeneralData\GeneralData.csproj" />    <ProjectReference Include="..\Server\EEMSClientCore\EEMSClientCore.csproj" />    <ProjectReference Include="..\Server\ServiceBase\ServiceBase.csproj" />  </ItemGroup>  <ItemGroup>    <Resource Include="Logo.ico" />  </ItemGroup></Project>
 |