1 write to _workingDirectory
aspire (1)
Projects\PrebuiltAppHostServer.cs (1)
118
_workingDirectory
= Path.Combine(integrationCacheDirectory.FullName, "apphosts", pathDir);
10 references to _workingDirectory
aspire (10)
Projects\PrebuiltAppHostServer.cs (10)
119
Directory.CreateDirectory(
_workingDirectory
);
120
_projectReferencePrepareLockPath = Path.Combine(
_workingDirectory
, "project-layouts", "prepare.lock");
121
_projectLayoutStore = new AppHostServerProjectLayoutStore(
_workingDirectory
, _logger);
198
_contentRootPath =
_workingDirectory
;
235
_integrationProbeManifestPath = Path.Combine(
_workingDirectory
, IntegrationPackageProbeManifest.FileName);
248
await WriteAppSettingsAsync(
_workingDirectory
, closureManifest.AppSettingsContent, cancellationToken).ConfigureAwait(false);
260
await WriteAppSettingsAsync(
_workingDirectory
, appSettingsContent, cancellationToken).ConfigureAwait(false);
781
var restoreDir = Path.Combine(
_workingDirectory
, "integration-restore");
1255
/// <see cref="
_workingDirectory
"/> so that two AppHosts running on the same machine against
1463
var contentRootPath = _contentRootPath ??
_workingDirectory
;