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; 77var pathHash = SHA256.HashData(Encoding.UTF8.GetBytes(_appPath)); 96public string AppDirectoryPath => _appPath; 320var userNugetConfig = FindNuGetConfig(_appPath); 326?? AspireConfigFile.Load(_appPath)?.Channel 327?? AspireJsonConfiguration.Load(_appPath)?.Channel;