Luea.csproj 748 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  6. <OutputType>Exe</OutputType>
  7. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  10. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  11. <Optimize>true</Optimize>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  14. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  15. <Optimize>false</Optimize>
  16. </PropertyGroup>
  17. </Project>