10 references to FullPath
dotnet-svcutil-lib (10)
CommandProcessorOptions.cs (5)
326
var projectFile = this.Project?.
FullPath
;
507
throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrNoUpdateParamsFileFoundFormat, this.Project.
FullPath
));
515
throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrMoreThanOneUpdateParamsFilesFoundFormat, this.Project.
FullPath
, Switches.Update.Name, svcRefNames));
529
throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrServiceReferenceNotFoundUnderProjectFormat, this.UpdateServiceReferenceFolder, this.Project.
FullPath
));
537
throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrNoUpdateParamsFileFoundFormat, this.Project.
FullPath
));
Shared\MSBuildProj.cs (4)
710
using (await SafeLogger.WriteStartOperationAsync(logger, $"Saving project file: \"{this.
FullPath
}\"").ConfigureAwait(false))
718
using (StreamWriter writer = File.CreateText(this.
FullPath
))
993
propertyTable = await _propertyResolver.EvaluateProjectPropertiesAsync(this.
FullPath
, this.TargetFramework, propertyNames, this.GlobalProperties, logger, cancellationToken).ConfigureAwait(false);
1037
return this.
FullPath
;
Shared\Options\OptionValueParser.cs (1)
122
value = proj.
FullPath
.Replace("\\", "/");