3 writes to _appPath
aspire (3)
Projects\DotNetBasedAppHostServerProject.cs (3)
67
_appPath
= Path.GetFullPath(appPath);
68
_appPath
= new Uri(_appPath).LocalPath;
69
_appPath
= OperatingSystem.IsWindows() ? _appPath.ToLowerInvariant() : _appPath;
8 references to _appPath
aspire (8)
Projects\DotNetBasedAppHostServerProject.cs (8)
68
_appPath = new Uri(
_appPath
).LocalPath;
69
_appPath = OperatingSystem.IsWindows() ?
_appPath
.ToLowerInvariant() :
_appPath
;
80
var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(
_appPath
));
99
public string AppDirectoryPath =>
_appPath
;
316
var userNugetConfig = _restoreRootConfigDirectory is null ? FindNuGetConfig(
_appPath
) : null;
322
?? AspireConfigFile.Load(
_appPath
)?.Channel
323
?? AspireJsonConfiguration.Load(
_appPath
)?.Channel;