1 write to _workingDirectory
aspire (1)
Projects\PrebuiltAppHostServer.cs (1)
114
_workingDirectory
= Path.Combine(integrationCacheDirectory.FullName, "apphosts", pathDir);
10 references to _workingDirectory
aspire (10)
Projects\PrebuiltAppHostServer.cs (10)
115
Directory.CreateDirectory(
_workingDirectory
);
116
_projectReferencePrepareLockPath = Path.Combine(
_workingDirectory
, "project-layouts", "prepare.lock");
117
_projectLayoutStore = new AppHostServerProjectLayoutStore(
_workingDirectory
, _logger);
163
_contentRootPath =
_workingDirectory
;
199
_integrationProbeManifestPath = Path.Combine(
_workingDirectory
, IntegrationPackageProbeManifest.FileName);
212
await WriteAppSettingsAsync(
_workingDirectory
, closureManifest.AppSettingsContent, cancellationToken).ConfigureAwait(false);
224
await WriteAppSettingsAsync(
_workingDirectory
, appSettingsContent, cancellationToken).ConfigureAwait(false);
740
var restoreDir = Path.Combine(
_workingDirectory
, "integration-restore");
1214
/// <see cref="
_workingDirectory
"/> so that two AppHosts running on the same machine against
1422
var contentRootPath = _contentRootPath ??
_workingDirectory
;