Configuration.Base.props 1.1 KB

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project>
  3. <PropertyGroup Label="Configuration">
  4. <PlatformToolset>v143</PlatformToolset>
  5. <CharacterSet>Unicode</CharacterSet>
  6. <PreferredToolArchitecture Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='x64'">x64</PreferredToolArchitecture>
  7. <PreferredToolArchitecture Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='ARM64'">ARM64</PreferredToolArchitecture>
  8. <!-- To use ASAN, just uncomment this. For simplicity, you should run VS/windbg/etc
  9. (including the built executables themselves) after using vcvarsall or similar to setup
  10. environment, as ASAN needs access to libs and executables in the toolchain paths.
  11. -->
  12. <!--<EnableASAN>true</EnableASAN>-->
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  15. <UseDebugLibraries>true</UseDebugLibraries>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  18. <UseDebugLibraries>false</UseDebugLibraries>
  19. </PropertyGroup>
  20. </Project>