ParameterModule.csproj 1003 B

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  5. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  6. <Nullable>enable</Nullable>
  7. <UseWPF>true</UseWPF>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <Platforms>AnyCPU;x64</Platforms>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Compile Remove="Dialogs\**" />
  13. <EmbeddedResource Remove="Dialogs\**" />
  14. <None Remove="Dialogs\**" />
  15. <Page Remove="Dialogs\**" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <PackageReference Include="CommunityToolkit.Mvvm" />
  19. <PackageReference Include="Prism.DryIoc" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\..\Data\DataVM\DataVM.csproj" />
  23. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  24. <ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />
  25. <ProjectReference Include="..\UniversalControls\UniversalControls.csproj" />
  26. </ItemGroup>
  27. </Project>