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; 80var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(_appPath)); 99public string AppDirectoryPath => _appPath; 316var userNugetConfig = _restoreRootConfigDirectory is null ? FindNuGetConfig(_appPath) : null; 322?? AspireConfigFile.Load(_appPath)?.Channel 323?? AspireJsonConfiguration.Load(_appPath)?.Channel;