12 references to GetFullPath
Microsoft.DotNet.Cli.Definitions (12)
Commands\Pack\PackCommandDefinition.cs (1)
28
}.ForwardAsSingle(o => $"-property:PackageOutputPath={CommandDirectoryContext.
GetFullPath
(o)}");
Commands\Publish\PublishCommandDefinition.cs (1)
32
}.ForwardAsSingle(o => $"-property:TargetManifestFiles={string.Join("%3B", o.Select(CommandDirectoryContext.
GetFullPath
))}")
Commands\Test\TestCommandDefinition.VSTest.cs (4)
18
}.ForwardAsSingle(o => $"-property:VSTestSetting={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.
GetFullPath
(o))}");
38
}.ForwardAsSingle(o => $"-property:VSTestTestAdapterPath={MSBuildPropertyParser.SurroundWithDoubleQuotes(string.Join(";", o!.Select(CommandDirectoryContext.
GetFullPath
)))}")
66
.ForwardAsSingle(o => $"-property:VSTestDiag={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.
GetFullPath
(o))}");
78
}.ForwardAsSingle(o => $"-property:VSTestResultsDirectory={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.
GetFullPath
(o))}");
Commands\Tool\StoreCommandDefinition.cs (2)
35
return [materializedString, $"-property:AdditionalProjects={string.Join("%3B", o!.Skip(1).Select(CommandDirectoryContext.
GetFullPath
))}"];
55
}.ForwardAsSingle(o => $"-property:ComposeWorkingDir={CommandDirectoryContext.
GetFullPath
(o)}");
Common\CommonOptions.cs (1)
188
}.ForwardAsSingle(o => $"--property:ArtifactsPath={CommandDirectoryContext.
GetFullPath
(o)}");
Common\ImplicitRestoreOptions.cs (2)
33
}.ForwardAsSingle(o => $"-property:RestorePackagesPath={CommandDirectoryContext.
GetFullPath
(o)}");
49
}.ForwardAsSingle(o => $"-property:RestoreConfigFile={CommandDirectoryContext.
GetFullPath
(o)}");
Utilities\OptionExtensions.cs (1)
46
string argVal = CommandDirectoryContext.
GetFullPath
(o);