3 writes to _appPath
aspire (3)
Projects\DotNetBasedAppHostServerProject.cs (3)
77
_appPath
= Path.GetFullPath(appPath);
78
_appPath
= new Uri(_appPath).LocalPath;
79
_appPath
= OperatingSystem.IsWindows() ? _appPath.ToLowerInvariant() : _appPath;
7 references to _appPath
aspire (7)
Projects\DotNetBasedAppHostServerProject.cs (7)
78
_appPath = new Uri(
_appPath
).LocalPath;
79
_appPath = OperatingSystem.IsWindows() ?
_appPath
.ToLowerInvariant() :
_appPath
;
87
var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(
_appPath
));
106
public string AppPath =>
_appPath
;
332
var userNugetConfig = FindNuGetConfig(
_appPath
);
339
var localConfig = AspireJsonConfiguration.Load(
_appPath
);