Christos Mousikos
Results
3
comments of
Christos Mousikos
i wrote a python script to replace 11.6 to 11.7 in all the .vcxproj ``` import os def replace_in_file(file_path, search_string, replace_string): with open(file_path, 'r', encoding='utf-8') as file: file_contents = file.read()...