7 references to FromPathAsync
dotnet-svcutil-lib (2)
CommandProcessorOptions.cs (1)
372
this.Project = await MSBuildProj.
FromPathAsync
(projectFile, this.Logger, cancellationToken).ConfigureAwait(false);
Shared\Options\OptionValueParser.cs (1)
64
value = CreateValue<MSBuildProj>(() => MSBuildProj.
FromPathAsync
(stringValue, null, System.Threading.CancellationToken.None).Result, option, stringValue);
dotnet-svcutil-lib.Tests (5)
E2ETests.cs (1)
233
MSBuildProj binProj = MSBuildProj.
FromPathAsync
(binProjPath, null, CancellationToken.None).Result;
GlobalToolTests.cs (2)
129
this_TestCaseProject = await MSBuildProj.
FromPathAsync
(Path.Combine(this_TestCaseOutputDir, $"{testCaseName}.csproj"), null, CancellationToken.None);
157
this_TestCaseProject = await MSBuildProj.
FromPathAsync
(Path.Combine(this_TestCaseOutputDir, $"{testClientFolder}.csproj"), null, CancellationToken.None);
ProjectUtils.cs (1)
38
project = MSBuildProj.
FromPathAsync
(filePath, logger, token).Result;
TestInit.cs (1)
259
this_TestCaseProject = MSBuildProj.
FromPathAsync
(projectPath, null, CancellationToken.None).Result;