| 123456789101112131415161718192021222324252627282930313233343536 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>	  <OutputType>Library</OutputType>	  <TargetFramework>net8.0-windows</TargetFramework>	  <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>	  <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>	  <Nullable>enable</Nullable>	  <ImplicitUsings>enable</ImplicitUsings>	  <UseWPF>true</UseWPF>	  <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>  </PropertyGroup>  <ItemGroup>    <None Remove="Resources\Icon.png" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="CommunityToolkit.Mvvm" />    <PackageReference Include="Prism.DryIoc" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\..\Data_ViewModel\GlobalData\GlobalData.csproj" />    <ProjectReference Include="..\..\UICommon\UICommon.csproj" />    <ProjectReference Include="..\..\Universal\Universal.csproj" />  </ItemGroup>  <ItemGroup>    <Resource Include="Resources\Furnace.png" />    <Resource Include="Resources\Icon.png" />    <Resource Include="Resources\Kepler.png" />  </ItemGroup></Project>
 |