mirror of
https://github.com/godotengine/godot.git
synced 2025-01-22 18:43:29 -05:00
Visual Studio: Fix indentation in sln file, VS is VERY PICKY
This commit is contained in:
parent
536ca28ea9
commit
7336ec1f7e
1 changed files with 2 additions and 2 deletions
|
@ -1621,8 +1621,8 @@ def generate_vs_project(env, original_args, project_name="godot"):
|
|||
sln_template = sln_template.replace("%%NAME%%", project_name)
|
||||
sln_template = sln_template.replace("%%UUID%%", proj_uuid)
|
||||
sln_template = sln_template.replace("%%SLNUUID%%", sln_uuid)
|
||||
sln_template = sln_template.replace("%%SECTION1%%", "\n ".join(section1))
|
||||
sln_template = sln_template.replace("%%SECTION2%%", "\n ".join(section2))
|
||||
sln_template = sln_template.replace("%%SECTION1%%", "\n\t\t".join(section1))
|
||||
sln_template = sln_template.replace("%%SECTION2%%", "\n\t\t".join(section2))
|
||||
|
||||
with open(f"{project_name}.sln", "w", encoding="utf-8", newline="\r\n") as f:
|
||||
f.write(sln_template)
|
||||
|
|
Loading…
Reference in a new issue