3 writes to _appPath
aspire (3)
Projects\DotNetBasedAppHostServerProject.cs (3)
65
_appPath
= Path.GetFullPath(appPath);
66
_appPath
= new Uri(_appPath).LocalPath;
67
_appPath
= OperatingSystem.IsWindows() ? _appPath.ToLowerInvariant() : _appPath;
8 references to _appPath
aspire (8)
Projects\DotNetBasedAppHostServerProject.cs (8)
66
_appPath = new Uri(
_appPath
).LocalPath;
67
_appPath = OperatingSystem.IsWindows() ?
_appPath
.ToLowerInvariant() :
_appPath
;
77
var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(
_appPath
));
96
public string AppDirectoryPath =>
_appPath
;
320
var userNugetConfig = FindNuGetConfig(
_appPath
);
326
?? AspireConfigFile.Load(
_appPath
)?.Channel
327
?? AspireJsonConfiguration.Load(
_appPath
)?.Channel;