1 write to ProjectPath
dotnet-watch (1)
CommandLine\CommandLineOptions.cs (1)
188ProjectPath = projectValue,
7 references to ProjectPath
dotnet-watch (1)
Program.cs (1)
113projectPath = options.ProjectPath ?? searchBase;
dotnet-watch.Tests (6)
CommandLine\CommandLineOptionsTests.cs (5)
200Assert.Equal("p", options.ProjectPath); 254Assert.Null(options.ProjectPath); 327Assert.Equal("P", options.ProjectPath); 426Assert.Equal("MyProject.csproj", options.ProjectPath); 433Assert.Equal("MyProject.csproj", options.ProjectPath);
TestUtilities\TestOptions.cs (1)
26return options.GetProjectOptions(options.ProjectPath ?? "test.csproj", workingDirectory: "");