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.
1 parent da48254 commit fbb924aCopy full SHA for fbb924a
csharp/runner/SnippetRunner/Program.cs
@@ -629,10 +629,10 @@ static string SetupTempRepository(InstallLocations senzingInstall)
629
}
630
631
632
- string supportPath = supportDir.FullName;
633
- string configPath = configDir.FullName;
634
- string resourcePath = resourcesDir.FullName;
635
- string baseConfig = File.ReadAllText(configFile);
+ string supportPath = supportDir.FullName.Replace("\\", "\\\\");
+ string configPath = configDir.FullName.Replace("\\", "\\\\");;
+ string resourcePath = resourcesDir.FullName.Replace("\\", "\\\\");;
+ string baseConfig = File.ReadAllText(configFile).Replace("\\", "\\\\");;
636
string settings = $$"""
637
{
638
"PIPELINE": {
0 commit comments