Skip to content

Commit d1ffba2

Browse files
committed
Fix template expansion after slnx rename
1 parent 9389c48 commit d1ffba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Expand-Template.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ try {
9999
git config core.safecrlf false # Avoid warnings when adding files with mangled line endings
100100

101101
# Rename project directories and solution
102-
git mv Library.sln "$LibraryName.sln"
102+
git mv Library.slnx "$LibraryName.slnx"
103103
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
104104
git mv src/Library/Library.csproj "src/Library/$LibraryName.csproj"
105105
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

0 commit comments

Comments
 (0)