You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vcxproj.user-tpl 659B

1234567891011121314
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. {% for config_type, (config_command, config_env) in configurations.items() %}
  4. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='{{ config_type }}|{{ platform_target }}'">
  5. {%- if config_command is not none %}
  6. <LocalDebuggerCommand>{{ config_command }}</LocalDebuggerCommand>
  7. {%- endif -%}
  8. {%- if config_env is not none %}
  9. <LocalDebuggerEnvironment>{{ config_env }}</LocalDebuggerEnvironment>
  10. {%- endif -%}
  11. <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
  12. </PropertyGroup>
  13. {% endfor %}
  14. </Project>