release.props 891 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ImportGroup Label="PropertySheets" />
  4. <PropertyGroup Label="UserMacros">
  5. <Cfg>vsrelease</Cfg>
  6. </PropertyGroup>
  7. <ItemDefinitionGroup>
  8. <ClCompile>
  9. <Optimization>MinSpace</Optimization>
  10. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  11. <IntrinsicFunctions>true</IntrinsicFunctions>
  12. <FunctionLevelLinking>true</FunctionLevelLinking>
  13. </ClCompile>
  14. <Link>
  15. <GenerateDebugInformation>false</GenerateDebugInformation>
  16. </Link>
  17. </ItemDefinitionGroup>
  18. <ItemGroup>
  19. <BuildMacro Include="Cfg">
  20. <Value>$(Cfg)</Value>
  21. <EnvironmentVariable>true</EnvironmentVariable>
  22. </BuildMacro>
  23. </ItemGroup>
  24. </Project>