Staging
v0.5.1
https://github.com/python/cpython
Revision 7e7cf8bc51cc8a8148a0ac891bd5c88092272bab authored by Terry Jan Reedy on 31 August 2013, 21:16:45 UTC, committed by Terry Jan Reedy on 31 August 2013, 21:16:45 UTC
2 parent s 2e87c87 + 740d6b6
Raw File
Tip revision: 7e7cf8bc51cc8a8148a0ac891bd5c88092272bab authored by Terry Jan Reedy on 31 August 2013, 21:16:45 UTC
Issue #12037: Fix test_email for desktop Windows.
Tip revision: 7e7cf8b
debug.props
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Label="UserMacros">
    <PyDebugExt>_d</PyDebugExt>
    <KillPythonExe>$(OutDir)kill_python_d.exe</KillPythonExe>
  </PropertyGroup>
  <PropertyGroup>
    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
    <TargetName>$(ProjectName)_d</TargetName>
  </PropertyGroup>
  <ItemDefinitionGroup>
    <ClCompile>
      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <ResourceCompile>
      <PreprocessorDefinitions>_DEBUG</PreprocessorDefinitions>
    </ResourceCompile>
  </ItemDefinitionGroup>
  <ItemGroup>
    <BuildMacro Include="PyDebugExt">
      <Value>$(PyDebugExt)</Value>
    </BuildMacro>
    <BuildMacro Include="KillPythonExe">
      <Value>$(KillPythonExe)</Value>
    </BuildMacro>
  </ItemGroup>
</Project>
back to top