2 writes to _integrationLibsPath
aspire (2)
Projects\PrebuiltAppHostServer.cs (2)
199
_integrationLibsPath
= null;
245
_integrationLibsPath
= _selectedProjectLayout.IntegrationLibsPath;
5 references to _integrationLibsPath
aspire (5)
Projects\PrebuiltAppHostServer.cs (5)
158
var assemblyPath = hostingAssembly?.Path ?? (
_integrationLibsPath
is not null ? Path.Combine(
_integrationLibsPath
, "Aspire.Hosting.dll") : null);
1498
if (
_integrationLibsPath
is not null)
1500
_logger.LogDebug("Setting {EnvironmentVariable} to {Path}", KnownConfigNames.IntegrationLibsPath,
_integrationLibsPath
);
1501
startInfo.Environment[KnownConfigNames.IntegrationLibsPath] =
_integrationLibsPath
;