3 writes to _appPath
aspire (3)
Projects\AppHostServerProject.cs (3)
106
_appPath
= Path.GetFullPath(appPath);
107
_appPath
= new Uri(_appPath).LocalPath;
108
_appPath
= OperatingSystem.IsWindows() ? _appPath.ToLowerInvariant() : _appPath;
9 references to _appPath
aspire (9)
Projects\AppHostServerProject.cs (9)
107
_appPath = new Uri(
_appPath
).LocalPath;
108
_appPath = OperatingSystem.IsWindows() ?
_appPath
.ToLowerInvariant() :
_appPath
;
114
var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(
_appPath
));
133
public string AppPath =>
_appPath
;
246
var userNugetConfig = FindNuGetConfig(
_appPath
);
259
var localConfigPath = AspireJsonConfiguration.GetFilePath(
_appPath
);
260
var localConfig = AspireJsonConfiguration.Load(
_appPath
);
646
var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(
_appPath
));