Skip to content

Commit a1f5197

Browse files
committed
Small changes:
- Added support for rider .idea-Directory - Modified launchSettings.json - Timestamp is now a timestamp
1 parent 190db8d commit a1f5197

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Source/LittleScriptBuddy/LittleScriptBuddy.Console/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
var zeitstempel = DateTime.Now;
3939
var targetFilename = Path.GetFileName(file);
40-
Console.WriteLine($" - [{zeitstempel:yyyy-MM-dd}] exec {command} >> {targetFilename}");
40+
Console.WriteLine($" - [{zeitstempel:yyyy-MM-dd HH:mm:ss}] exec {command} >> {targetFilename}");
4141
});
4242
watcher.Run();
4343

Source/LittleScriptBuddy/LittleScriptBuddy.Console/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"LittelScriptBuddy.Console": {
44
"commandName": "Project",
5-
"commandLineArgs": "--targetDirectory \"C:\\Users\\Kane\\Documents\\Github\\LocalNetAppChat\" --scriptsDirectory \"C:\\Users\\Kane\\Desktop\\Github\\Scripts\""
5+
"commandLineArgs": "--targetDirectory \"C:\\Projekte\\NBackKata\" --scriptsDirectory \"C:\\Tools\\TestScripts\""
66
}
77
}
88
}

Source/LittleScriptBuddy/LittleScriptBuddy.Domain/FilesWatcher/FileChangeWatcher.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Action<string> onFileChanged
1919
this.targetDirectory = targetDirectory;
2020
this.fileEnding = fileEnding;
2121
this.onFileChanged = onFileChanged;
22-
2322
}
2423

2524
public void Run()

0 commit comments

Comments
 (0)