EEMSCenterUI.csproj 734 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. <UseWindowsForms>false</UseWindowsForms>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="CommunityToolkit.Mvvm" />
  12. <PackageReference Include="Hardcodet.NotifyIcon.Wpf" />
  13. <PackageReference Include="Prism.DryIoc" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\UICommon\UICommon.csproj" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Resource Include="Logo.ico" />
  23. </ItemGroup>
  24. </Project>