EEMSMain.csproj 1.0 KB

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