| 12345678910111213141516171819202122232425262728293031323334 | <Project Sdk="Microsoft.NET.Sdk">	<PropertyGroup>		<TargetFramework>net8.0-windows</TargetFramework>		<OutputPath>$(SolutionDir)Binary\Modules</OutputPath>		<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>		<Nullable>enable</Nullable>		<UseWPF>true</UseWPF>		<ImplicitUsings>enable</ImplicitUsings>		<Platforms>AnyCPU;x64</Platforms>	</PropertyGroup>	<ItemGroup>	  <Compile Remove="Dialogs\**" />	  <EmbeddedResource Remove="Dialogs\**" />	  <None Remove="Dialogs\**" />	  <Page Remove="Dialogs\**" />	</ItemGroup>	<ItemGroup>		<PackageReference Include="CommunityToolkit.Mvvm" />		<PackageReference Include="Prism.DryIoc" />	</ItemGroup>	<ItemGroup>		<ProjectReference Include="..\..\Data\DataVM\DataVM.csproj" />		<ProjectReference Include="..\..\UICommon\UICommon.csproj" />		<ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />		<ProjectReference Include="..\UniversalControls\UniversalControls.csproj" />	</ItemGroup></Project>
 |