From 7eda64fa5ff5adb2450adbf292bda84809e36e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=B6gershausen?= Date: Mon, 17 Oct 2022 10:20:06 +0200 Subject: [PATCH] Summary :twincat_version_manager.py: Check .xti files for correct version --- twincat_version_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twincat_version_manager.py b/twincat_version_manager.py index 77484bb..be19ad1 100644 --- a/twincat_version_manager.py +++ b/twincat_version_manager.py @@ -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():