EEMSMain.csproj 926 B

1234567891011121314151617181920212223242526272829303132
  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="Prism.DryIoc" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\Data\Device\Device.csproj" />
  23. <ProjectReference Include="..\GlobalData\GlobalData\GlobalData.csproj" />
  24. <ProjectReference Include="..\UICommon\UICommon.csproj" />
  25. </ItemGroup>
  26. </Project>