| 123456789101112131415161718192021222324 | <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>		<PackageReference Include="CommunityToolkit.Mvvm" />		<PackageReference Include="Prism.DryIoc" />	</ItemGroup>	<ItemGroup>		<ProjectReference Include="..\..\UICommon\UICommon.csproj" />	</ItemGroup></Project>
 |