apps-build-settings.props 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup Condition="'$(Configuration)'=='Debug-static'">
  4. <TargetName>$(ProjectName)_d</TargetName>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'">
  7. <TargetName>$(ProjectName)-dll_d</TargetName>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)'=='Release-static'">
  10. <TargetName>$(ProjectName)</TargetName>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)'=='Release-dll'">
  13. <TargetName>$(ProjectName)-dll</TargetName>
  14. </PropertyGroup>
  15. <ItemDefinitionGroup>
  16. <ClCompile>
  17. <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  18. </ClCompile>
  19. <Link>
  20. <SubSystem>Console</SubSystem>
  21. </Link>
  22. <ProjectReference />
  23. </ItemDefinitionGroup>
  24. <ItemDefinitionGroup>
  25. <ClCompile>
  26. <RuntimeLibrary Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary>
  27. <RuntimeLibrary Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary>
  28. <RuntimeLibrary Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary>
  29. <RuntimeLibrary Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary>
  30. </ClCompile>
  31. </ItemDefinitionGroup>
  32. </Project>