Skip to content

Commit

Permalink
Updated the CompileFromTemplate() private method of the FrmInstaller …
Browse files Browse the repository at this point in the history
…class to not include extra line breaks in the generated files.
  • Loading branch information
xvitaly committed Nov 30, 2024
1 parent fac3e76 commit e11eb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/srcrepair/FrmInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void CompileFromTemplate(string Template, string FileName)
{
using (StreamWriter CFile = new StreamWriter(FileName))
{
CFile.WriteLine(Template.Replace("{D}", Path.GetFileNameWithoutExtension(FileName)));
CFile.Write(Template.Replace("{D}", Path.GetFileNameWithoutExtension(FileName)));
}
}
catch (Exception Ex)
Expand Down

0 comments on commit e11eb19

Please sign in to comment.