RecipeModule.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <TargetFramework>net8.0-windows</TargetFramework>
  10. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <Nullable>enable</Nullable>
  13. <UseWPF>true</UseWPF>
  14. <Platforms>AnyCPU;x64</Platforms>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <Compile Remove="Controls\**" />
  18. <Compile Remove="Pops\**" />
  19. <EmbeddedResource Remove="Controls\**" />
  20. <EmbeddedResource Remove="Pops\**" />
  21. <None Remove="Controls\**" />
  22. <None Remove="Pops\**" />
  23. <Page Remove="Controls\**" />
  24. <Page Remove="Pops\**" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="CommunityToolkit.Mvvm" />
  28. <PackageReference Include="Prism.DryIoc" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\..\Data\DataVM\DataVM.csproj" />
  32. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  33. <ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />
  34. <ProjectReference Include="..\UniversalControls\UniversalControls.csproj" />
  35. </ItemGroup>
  36. </Project>