Summary :twincat_version_manager.py: Check .xti files for correct version

This commit is contained in:
Torsten Bögershausen
2022-10-17 10:20:06 +02:00
parent df503583e1
commit 7eda64fa5f

View File

@@ -2,7 +2,7 @@ import glob
import xml.etree.ElementTree as ET
VERSION_TAGS = {"**/*.Tc*": "ProductVersion", "**/*.tsproj": "TcVersion"}
CORRECT_VERSIONS = {"**/*.Tc*": "3.1.4024.11", "**/*.tsproj": "3.1.4024.32"}
CORRECT_VERSIONS = {"**/*.Tc*": "3.1.4024.11", "**/*.tsproj": "3.1.4024.32", "**/*.xti": "3.1.4024.32"}
def check_versions():