Hallo jaenicke,
danke für Deine Antwort.
Du hast Recht, ich kann dies in der .dproj Datei ändern.
Wie es scheint, hat Delphi hier wohl einen Bug:
Leider ist die Änderung nur bis zum nächsten Umschalten zwischen DEBUG und RELEASE aktiv.
Vor dem Umschalten von DEBUG auf RELEASE:
Code:
<PropertyGroup Condition="'$(Cfg_1)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
<DCC_DebugInformation>0</DCC_DebugInformation>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
<DCC_DebugInformation>0</DCC_DebugInformation>
Und danach:
Code:
<PropertyGroup Condition="'$(Cfg_1)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
<DCC_DebugInformation>0</DCC_DebugInformation>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
<DCC_DebugInformation>true</DCC_DebugInformation>
Das ist jetzt zwar nicht dramatisch. Ich würde aber schon gern wissen, woran es liegt.
Hat jemand eine Idee oder sollte man hier ein Support Ticket bei Embarcadero aufmachen?
Viele Grüße,
Poolspieler