Fix project format typo

This commit is contained in:
Zontreck 2023-08-28 23:47:47 -07:00
parent 7e3f7f7998
commit d8a949aeeb
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -704,7 +704,7 @@ public abstract class VSGenericTarget : ITarget
if (node.Tool == "SnapWrap")
ps.WriteLine($" <Exec Command='dotnet \"$(SolutionDir){pathText}\" \"$({node.SourceDirectory}){node.Name}\" \"$(ProjectDir){node.OutputName}\" \"{node.Libraries}\"' />");
else
ps.WriteLine($" <Exec Command='dotnet \"$(SolutionDir){pathText}\" \"$({node.SourceDirectory}){node.Name}\" \"$(ProjectDir){node.OutputName}\" />");
ps.WriteLine($" <Exec Command='dotnet \"$(SolutionDir){pathText}\" \"$({node.SourceDirectory}){node.Name}\" \"$(ProjectDir){node.OutputName}\"' />");
ps.WriteLine($" </Target>");