CollaborativePlatformProject.csproj 707 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <WarningLevel>0</WarningLevel>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  13. <WarningLevel>0</WarningLevel>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="HandyControl" Version="3.5.1" />
  17. <PackageReference Include="LayUI.Wpf" Version="1.0.2.240407" />
  18. </ItemGroup>
  19. </Project>