Beckhoff-SDK aktualisieren
Wenn ältere Visual Studio C++ - Projekte gegen frühere SDK Versionen kompiliert wurden so muss einmalig eine Anpassung erfolgen.
Für neuere Versionen des Beckhoff-SDK muss diese Anpassung nicht mehr erfolgen.
- Öffnen Sie mit einem Texteditor (Notepad etc.) die Projektdatei <projektname>.vcproj
- Suchen Sie nach allen alten SDK Einträgen und ersetzen diese durch die neuen Einträge
Suchen nach
"HMI_500_V1.1 (x86)" und "HMI_500_V1.2 (x86)"
Ersetzen durch
"Beckhoff_HMI_500 (x86)"
Suchen nach
"HMI_500_V1.1 (ARMV4I)" und "HMI_500_V1.2 (ARMV4I)"
Ersetzen durch
"Beckhoff_HMI_500 (ARMV4I)"
Beispiel:
Altes SDK:
<Platforms>
<Platform
Name="HMI_500_V1.1 (x86)"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|HMI_500_V1.1 (x86)"
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
...
Neues SDK:
<Platforms>
<Platform
Name="Beckhoff_HMI_500
(x86)"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Beckhoff_HMI_500
(x86)"
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
...