| 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="dashboard.png" />	</ItemGroup>	<ItemGroup>	  <PackageReference Include="CommunityToolkit.Mvvm" />	  <PackageReference Include="Mapster" />	  <PackageReference Include="Prism.DryIoc" />	</ItemGroup>	<ItemGroup>	  <ProjectReference Include="..\..\Data\GeneralData\GeneralData.csproj" />	  <ProjectReference Include="..\..\Data_ViewModel\GlobalData\GlobalData.csproj" />	  <ProjectReference Include="..\..\UICommon\UICommon.csproj" />	  <ProjectReference Include="..\..\Universal\Universal.csproj" />	</ItemGroup>	<ItemGroup>	  <Resource Include="dashboard.png" />	</ItemGroup></Project>
 |