4 writes to ProjectPath
dotnet-watch (3)
Aspire\AspireServiceFactory.cs (1)
212
ProjectPath
= projectLaunchInfo.ProjectPath,
CommandLine\CommandLineOptions.cs (1)
370
ProjectPath
= projectPath,
HotReload\HotReloadDotNetWatcher.cs (1)
100
rootProjectOptions = rootProjectOptions with {
ProjectPath
= rootProject.ProjectInstance.FullPath };
dotnet-watch.Tests (1)
HotReload\RuntimeProcessLauncherTests.cs (1)
63
ProjectPath
= projectPath,
14 references to ProjectPath
dotnet-watch (13)
Aspire\AspireServiceFactory.cs (2)
111
_logger.LogDebug("Starting project: {Path}", projectOptions.
ProjectPath
);
131
throw new ApplicationException($"Failed to launch project '{projectOptions.
ProjectPath
}'.");
Browser\BrowserLauncher.cs (1)
141
? null : LaunchSettingsProfile.ReadLaunchProfile(projectOptions.
ProjectPath
, projectOptions.LaunchProfileName, logger)) ?? new();
HotReload\HotReloadDotNetWatcher.cs (7)
85
var (buildSucceeded, buildOutput, _) = await BuildProjectAsync(rootProjectOptions.
ProjectPath
, rootProjectOptions.BuildArguments, iterationCancellationToken);
86
BuildOutput.ReportBuildOutput(_context.BuildLogger, buildOutput, buildSucceeded, projectDisplay: rootProjectOptions.
ProjectPath
);
167
await compilationHandler.Workspace.UpdateProjectConeAsync(rootProjectOptions.
ProjectPath
, iterationCancellationToken);
463
await compilationHandler.Workspace.UpdateProjectConeAsync(rootProjectOptions.
ProjectPath
, iterationCancellationToken);
653
fileWatcher.WatchContainingDirectories([_context.RootProjectOptions.
ProjectPath
], includeSubdirectories: true);
843
_context.RootProjectOptions.
ProjectPath
,
857
_context.RootProjectOptions.
ProjectPath
,
Process\ProjectLauncher.cs (1)
36
var projectNode = projectMap.TryGetProjectNode(projectOptions.
ProjectPath
, projectOptions.TargetFramework);
Program.cs (1)
270
rootProjectOptions.
ProjectPath
,
Watch\BuildEvaluator.cs (1)
40
_context.RootProjectOptions.
ProjectPath
,
dotnet-watch.Tests (1)
HotReload\CompilationHandlerTests.cs (1)
27
var projectGraph = ProjectGraphUtilities.TryLoadProjectGraph(options.
ProjectPath
, globalOptions: [], logger, projectGraphRequired: false, CancellationToken.None);