1 write to MSBuildProj
dotnet-svcutil-lib (1)
Bootstrapper\SvcutilBootstrapper.cs (1)
123
this.
MSBuildProj
= await MSBuildProj.DotNetNewAsync(projectFullPath, logger, cancellationToken).ConfigureAwait(false);
13 references to MSBuildProj
dotnet-svcutil-lib (13)
Bootstrapper\SvcutilBootstrapper.cs (13)
88
result = await ProcessRunner.RunAsync("dotnet", $"run \"{paramsFilePath}\"", this.
MSBuildProj
.DirectoryPath, redirectOutput, logger, cancellationToken).ConfigureAwait(false);
124
this.
MSBuildProj
.AddDependency(svcutilPkgRef, true);
129
this.
MSBuildProj
.TargetFramework = targetFramework;
132
this.
MSBuildProj
.SetEnableMsixTooling();
142
this.
MSBuildProj
.AddDependency(dependency);
147
this.
MSBuildProj
.RuntimeIdentifier = this.Options.RuntimeIdentifier;
151
this.
MSBuildProj
.ClearWarningsAsErrors();
153
await this.
MSBuildProj
.SaveAsync(logger, cancellationToken).ConfigureAwait(false);
170
string programFilePath = Path.Combine(this.
MSBuildProj
.DirectoryPath, "Program.cs");
177
var paramsFilePath = Path.Combine(this.
MSBuildProj
.DirectoryPath, s_bootstrapperParamsFileName);
193
var restoreResult = await this.
MSBuildProj
.RestoreAsync(logger, cancellationToken).ConfigureAwait(false);
201
var buildResult = await this.
MSBuildProj
.BuildAsync(logger, cancellationToken).ConfigureAwait(false);
219
this.
MSBuildProj
?.Dispose();