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.
WriteAllText
AppendAllText
1 parent 6005bb7 commit f10b313Copy full SHA for f10b313
src/GitVersionExe/Program.cs
@@ -160,7 +160,7 @@ static void ConfigureLogging(Arguments arguments)
160
static void WriteLogEntry(Arguments arguments, string s)
161
{
162
var contents = string.Format("{0}\t\t{1}\r\n", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), s);
163
- File.WriteAllText(arguments.LogFilePath, contents);
+ File.AppendAllText(arguments.LogFilePath, contents);
164
}
165
166
static List<string> GetArgumentsWithoutExeName()
0 commit comments