Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluimers/a2839f02857e2a9aaf719098a3630a0c to your computer and use it in GitHub Desktop.
Save jpluimers/a2839f02857e2a9aaf719098a3630a0c to your computer and use it in GitHub Desktop.
Not sure why, but sometimes the Delphi options display a regular application, but the IsConsole returns true because of AppType Console in the main PropertyGroup
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{1E3B4BAA-5AF2-4859-AA04-8FD438B445CC}</ProjectGuid>
<ProjectVersion>18.2</ProjectVersion>
<FrameworkType>None</FrameworkType>
<Base>True</Base>
<Config Condition="'$(Config)'==''">Debug</Config>
<Platform Condition="'$(Platform)'==''">Win32</Platform>
<TargetedPlatforms>1</TargetedPlatforms>
<AppType>Application</AppType>
<MainSource>EduIXCreditReceiverTests.dpr</MainSource>
</PropertyGroup>
<!-- rest of .dproj file -->
</Project>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{1E3B4BAA-5AF2-4859-AA04-8FD438B445CC}</ProjectGuid>
<ProjectVersion>18.2</ProjectVersion>
<FrameworkType>None</FrameworkType>
<Base>True</Base>
<Config Condition="'$(Config)'==''">Debug</Config>
<Platform Condition="'$(Platform)'==''">Win32</Platform>
<TargetedPlatforms>1</TargetedPlatforms>
<AppType>Console</AppType>
<MainSource>EduIXCreditReceiverTests.dpr</MainSource>
</PropertyGroup>
<!-- rest of .dproj file -->
</Project>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{1E3B4BAA-5AF2-4859-AA04-8FD438B445CC}</ProjectGuid>
<ProjectVersion>18.2</ProjectVersion>
<FrameworkType>None</FrameworkType>
<Base>True</Base>
<Config Condition="'$(Config)'==''">Debug</Config>
<Platform Condition="'$(Platform)'==''">Win32</Platform>
<TargetedPlatforms>1</TargetedPlatforms>
<AppType>Console</AppType>
<MainSource>EduIXCreditReceiverTests.dpr</MainSource>
</PropertyGroup>
<!-- rest of .dproj file -->
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment