We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 536ca28 commit 7336ec1Copy full SHA for 7336ec1
methods.py
@@ -1621,8 +1621,8 @@ def format_key_value(v):
1621
sln_template = sln_template.replace("%%NAME%%", project_name)
1622
sln_template = sln_template.replace("%%UUID%%", proj_uuid)
1623
sln_template = sln_template.replace("%%SLNUUID%%", sln_uuid)
1624
- sln_template = sln_template.replace("%%SECTION1%%", "\n ".join(section1))
1625
- 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))
1626
1627
with open(f"{project_name}.sln", "w", encoding="utf-8", newline="\r\n") as f:
1628
f.write(sln_template)
0 commit comments