DashBoard.csproj 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="dashboard.png" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="CommunityToolkit.Mvvm" />
  17. <PackageReference Include="Prism.DryIoc" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Data\GeneralData\GeneralData.csproj" />
  21. <ProjectReference Include="..\..\Data_ViewModel\GlobalData\GlobalData.csproj" />
  22. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  23. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Resource Include="dashboard.png" />
  27. </ItemGroup>
  28. </Project>