DataLogModule.csproj 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="CommunityToolkit.Mvvm" />
  17. <PackageReference Include="Prism.DryIoc" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Data\DataVM\DataVM.csproj" />
  21. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  22. <ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />
  23. <ProjectReference Include="..\UniversalControls\UniversalControls.csproj" />
  24. </ItemGroup>
  25. </Project>