Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ChuckDeviceConfigurator/Strings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static partial class Strings

#region Folder & File Path Properties

public const string BasePath = "./bin/debug/";
public const string BasePath = "./";
public const string WebRootFolder = "wwwroot";
public const string WebRoot = BasePath + "wwwroot";
public static readonly string DataFolder = Path.Combine(WebRoot, "data");
Expand Down Expand Up @@ -159,4 +159,4 @@ public static partial class Strings
public const string DefaultCustomInstanceType = null;

#endregion
}
}
4 changes: 2 additions & 2 deletions src/Libs/ChuckDeviceController.Configuration/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public static class Config
{
private const string BasePath = "./bin/debug/";
private const string BasePath = "./";
private const string AppSettings = "appsettings.json";
private const string AppSettingsFormat = "appsettings.{0}.json";

Expand All @@ -28,4 +28,4 @@ public static IConfigurationRoot LoadConfig(string[] args, string? env = null)
.Build();
return config;
}
}
}