442 references to GetFullPath
AndroidAppBuilder (2)
ApkBuilder.cs (2)
530else if (Path.GetFullPath(signingKey) != Path.GetFullPath(defaultKey))
dotnet-dev-certs (2)
Program.cs (2)
407reporter.Verbose($"The certificate was exported to {Path.GetFullPath(exportPath.Value())}"); 414reporter.Verbose($"The certificate was exported to {Path.GetFullPath(exportPath.Value())}");
dotnet-getdocument (1)
Commands\InvokeCommand.cs (1)
43var thisPath = Path.GetFullPath(Path.GetDirectoryName(typeof(InvokeCommand).Assembly.Location));
dotnet-openapi (1)
Commands\BaseCommand.cs (1)
137return File.Exists(Path.GetFullPath(file)) && file.EndsWith(".csproj", StringComparison.Ordinal);
GetDocument.Insider (1)
Commands\GetDocumentCommand.cs (1)
65.Except([Path.GetFullPath(thisAssembly.Location)])
IIS.Tests (1)
Utilities\TestServer.cs (1)
125var webHostConfig = XDocument.Load(Path.GetFullPath("HostableWebCore.config"));
illink (4)
Microsoft.AspNetCore (4)
HostingPathResolver.cs (4)
21return Path.GetFullPath(basePath); 25return Path.GetFullPath(contentRootPath); 27return Path.GetFullPath(Path.Combine(Path.GetFullPath(basePath), contentRootPath));
Microsoft.AspNetCore.BrowserTesting (1)
BrowserManagerConfiguration.cs (1)
76BaseArtifactsFolder = Path.GetFullPath(configuration.GetValue(nameof(BaseArtifactsFolder), Path.Combine(Directory.GetCurrentDirectory(), "playwright")));
Microsoft.AspNetCore.Components.WebView.Photino (1)
BlazorWindow.cs (1)
47var contentRootDir = Path.GetDirectoryName(Path.GetFullPath(hostPage))!;
Microsoft.AspNetCore.FunctionalTests (1)
WebHostFunctionalTests.cs (1)
243return Path.GetFullPath(Path.Combine(directoryInfo.FullName, "testassets"));
Microsoft.AspNetCore.Hosting (3)
Internal\HostingEnvironmentExtensions.cs (2)
43hostingEnvironment.WebRootPath = Path.GetFullPath(hostingEnvironment.WebRootPath); 94hostingEnvironment.WebRootPath = Path.GetFullPath(hostingEnvironment.WebRootPath);
WebHostBuilder.cs (1)
372return Path.Combine(Path.GetFullPath(basePath), contentRootPath);
Microsoft.AspNetCore.Hosting.Tests (11)
HostingEnvironmentExtensionsTests.cs (9)
24env.Initialize(Path.GetFullPath("."), webHostOptions); 26Assert.Equal(Path.GetFullPath("."), env.ContentRootPath); 27Assert.Equal(Path.GetFullPath("testroot"), env.WebRootPath); 37env.Initialize(Path.GetFullPath("testroot"), CreateWebHostOptions()); 39Assert.Equal(Path.GetFullPath("testroot"), env.ContentRootPath); 40Assert.Equal(Path.GetFullPath(Path.Combine("testroot", "wwwroot")), env.WebRootPath); 50env.Initialize(Path.GetFullPath(Path.Combine("testroot", "wwwroot")), CreateWebHostOptions()); 52Assert.Equal(Path.GetFullPath(Path.Combine("testroot", "wwwroot")), env.ContentRootPath); 71env.Initialize(Path.GetFullPath("."), webHostOptions);
WebHostTests.cs (2)
848Assert.Equal(Path.GetFullPath("testroot"), env.WebRootPath); 854Assert.Equal(Path.GetFullPath("testroot"), env1.WebRootPath);
Microsoft.AspNetCore.Http.Results.Tests (28)
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (20)
38var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 60Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 69var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 92Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 101var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 119Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 128var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 146Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 158var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 175Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 186var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 215var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 242var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 270var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 294var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 310Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 327var path = Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile_ASCII.txt")); 337Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile_ASCII.txt")), sendFile.Name); 347var path = Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile.txt")); 357Assert.Equal(Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile.txt")), sendFile.Name);
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (8)
44var path = Path.GetFullPath("helllo.txt"); 81var path = Path.GetFullPath("helllo.txt"); 118var path = Path.GetFullPath("helllo.txt"); 151var path = Path.GetFullPath("helllo.txt"); 187var path = Path.GetFullPath("helllo.txt"); 221var path = Path.GetFullPath("helllo.txt"); 257var path = Path.GetFullPath("helllo.txt"); 288var path = Path.GetFullPath("helllo.txt");
Microsoft.AspNetCore.Mvc.Core.Test (34)
ControllerBaseTest.cs (4)
1773var path = Path.GetFullPath("somepath"); 1795var path = Path.GetFullPath("somepath"); 1817var path = Path.GetFullPath("somepath"); 1839var path = Path.GetFullPath("somepath");
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (20)
38var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 60Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 69var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 92Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 101var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 119Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 128var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 146Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 158var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 175Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 186var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 215var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 242var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 270var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 294var path = Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")); 310Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile.txt")), sendFile.Name); 327var path = Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile_ASCII.txt")); 337Assert.Equal(Path.GetFullPath(Path.Combine("TestFiles", "FilePathResultTestFile_ASCII.txt")), sendFile.Name); 347var path = Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile.txt")); 357Assert.Equal(Path.GetFullPath(Path.Combine(".", "TestFiles", "FilePathResultTestFile.txt")), sendFile.Name);
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (8)
44var path = Path.GetFullPath("helllo.txt"); 81var path = Path.GetFullPath("helllo.txt"); 118var path = Path.GetFullPath("helllo.txt"); 151var path = Path.GetFullPath("helllo.txt"); 187var path = Path.GetFullPath("helllo.txt"); 221var path = Path.GetFullPath("helllo.txt"); 257var path = Path.GetFullPath("helllo.txt"); 288var path = Path.GetFullPath("helllo.txt");
VirtualFileResultTest.cs (2)
23var path = Path.GetFullPath("helllo.txt"); 36var path = Path.GetFullPath("helllo.txt");
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
SimpleWithWebApplicationBuilderTests.cs (1)
203expectedWebRoot = Path.GetFullPath(Path.Combine(builder.GetSetting(WebHostDefaults.ContentRootKey), webRoot));
Microsoft.AspNetCore.Mvc.RazorPages.Test (4)
PageModelTest.cs (2)
1410var path = Path.GetFullPath("somepath"); 1427var path = Path.GetFullPath("somepath");
PageTest.cs (2)
1400var path = Path.GetFullPath("somepath"); 1417var path = Path.GetFullPath("somepath");
Microsoft.AspNetCore.Shared.Tests (1)
DotNetMuxerTests.cs (1)
30return Path.GetFullPath(Path.Combine(Path.GetDirectoryName(depsFile), "..", "..", "..", "dotnet" + (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".exe" : "")));
Microsoft.AspNetCore.StaticFiles (1)
StaticFileMiddleware.cs (1)
49_logger.WebRootPathNotFound(Path.GetFullPath(Path.Combine(hostingEnv.ContentRootPath, hostingEnv.WebRootPath ?? "wwwroot")));
Microsoft.AspNetCore.TestHost (1)
WebHostBuilderExtensions.cs (1)
158builder.UseContentRoot(Path.GetFullPath(Path.Combine(directoryInfo.FullName, solutionRelativePath)));
Microsoft.AspNetCore.Tests (1)
WebApplicationTests.cs (1)
631Path.TrimEndingDirectorySeparator(Path.GetFullPath(unnormalizedPath));
Microsoft.AspNetCore.WebSockets.ConformanceTests (1)
Helpers.cs (1)
10return Path.GetFullPath(Path.Combine(AppContext.BaseDirectory, projectName));
Microsoft.Build (20)
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (1)
86manifest.Path = System.IO.Path.GetFullPath(manifest.Path);
Construction\Solution\ProjectInSolution.cs (1)
188_absolutePath = Path.GetFullPath(_absolutePath);
Definition\Toolset.cs (1)
417string rootPath = Path.GetPathRoot(Path.GetFullPath(toolsPathToUse));
Definition\ToolsetReader.cs (1)
658path = Path.GetFullPath(
Evaluation\Conditionals\FunctionCallExpressionNode.cs (1)
174list.Add(Path.GetFullPath(Path.Combine(state.EvaluationDirectory, item.ItemSpec)));
Evaluation\Expander.cs (1)
4374returnVal = Path.GetFullPath(arg0);
FileUtilities.cs (5)
500return IsUNCPath(uncheckedFullPath) ? Path.GetFullPath(uncheckedFullPath) : uncheckedFullPath; 503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
FrameworkLocationHelper.cs (3)
921combinedPath = Path.GetFullPath(combinedPath); 932return Path.GetFullPath(combinedPath); 986return Path.GetFullPath(path);
Logging\BinaryLogger\BinaryLogger.cs (2)
394string fullPath = Path.GetFullPath(generatedFileUsedEventArgs.FilePath); 449FilePath = Path.GetFullPath(FilePath);
Logging\BinaryLogger\ProjectImportsCollector.cs (1)
220filePath = Path.GetFullPath(filePath);
Logging\FileLogger.cs (1)
105logDirectory = Path.GetDirectoryName(Path.GetFullPath(_logFileName));
Logging\LoggerDescription.cs (1)
284AssemblyLoadInfo.Create(_loggerAssembly.AssemblyName, Path.GetFullPath(_loggerAssembly.AssemblyFile));
Modifiers.cs (1)
663fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec));
Microsoft.Build.Conversion.Core (6)
ProjectFileConverter.cs (6)
368solutionFile = Path.GetFullPath(value); 2972DirectoryInfo searchDirectory = new DirectoryInfo(Path.GetDirectoryName(Path.GetFullPath(this.oldProjectFile))); 3035from = Path.GetFullPath(from); 3036to = Path.GetFullPath(to); 3989string projectFileDirectory = Path.GetDirectoryName(Path.GetFullPath(this.oldProjectFile)); 3990string officeDocumentFullPath = Path.GetFullPath(Path.Combine(projectFileDirectory, officeDocumentPath));
Microsoft.Build.Engine (19)
Conditionals\FunctionCallExpressionNode.cs (1)
49expandedValue = Path.GetFullPath(Path.Combine(Project.PerThreadProjectDirectory, expandedValue));
Engine\Engine.cs (2)
591msbuildPath = Path.GetFullPath(typeof(Engine).Assembly.Location); 2903string childProjectFullPath = Path.GetFullPath(childProjectFile);
Engine\IntrinsicFunctions.cs (1)
256string lookInDirectory = Path.GetFullPath(startingDirectory);
Engine\Project.cs (4)
1766string projectFullFileName = Path.GetFullPath(projectFileName); 2101string newFullProjectFilePath = Path.GetFullPath(projectFileName); 4026import.SetEvaluatedProjectPath(Path.GetFullPath(Path.Combine(projectDirectoryLocation, importedFilename))); 4030import.SetEvaluatedProjectPath(Path.GetFullPath(importedFilename));
Engine\ProjectSchemaValidationHandler.cs (1)
143projectFile = Path.GetFullPath(projectFile);
Engine\TaskExecutionModule.cs (1)
228Path.GetFullPath(projectFileNames[i]) : null;
Engine\Toolset.cs (1)
146string rootPath = Path.GetPathRoot(Path.GetFullPath(toolsPathToUse));
Engine\ToolsetReader.cs (1)
466path = Path.GetFullPath(
Logging\LoggerDescription.cs (1)
297new AssemblyLoadInfo(loggerAssembly.AssemblyName, Path.GetFullPath(loggerAssembly.AssemblyFile));
Shared\FileUtilities.cs (2)
351string fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec)); 611string fullPath = EscapingUtilities.Escape(Path.GetFullPath(Path.Combine(currentDirectory, fileSpec)));
Shared\FrameworkLocationHelper.cs (1)
561return Path.GetFullPath(combinedPath);
Shared\SolutionParser.cs (1)
328solutionFileDirectory = Path.GetDirectoryName(Path.GetFullPath(solutionFile));
Solution\VCWrapperProject.cs (2)
47string projectFullPath = Path.GetFullPath(projectPath); 142string projectPath = Path.GetFullPath(vcProjectFilename);
Microsoft.Build.Engine.OM.UnitTests (8)
Construction\ProjectRootElement_Tests.cs (1)
1661var fullPath = Path.GetFullPath("foo");
Definition\ProjectItem_Tests.cs (1)
1092? Path.GetFullPath(Path.Combine(testRoot, relativeFragmentFromRootToFile, file))
FileUtilities.cs (4)
503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
TransientIO.cs (2)
53path = Path.GetFullPath(path); 82var absolute = Path.GetFullPath(Path.IsPathRooted(relative) ? relative : Path.Combine(tempRoot, relative));
Microsoft.Build.Engine.UnitTests (19)
BackEnd\BuildRequestConfiguration_Tests.cs (2)
159Assert.Equal(config1.ProjectFullPath, Path.GetFullPath("file")); 494configWithoutEvaluation.ShouldSkipIsolationConstraintsForReference(Path.GetFullPath("foo"));
BackEnd\BuildRequestEngine_Tests.cs (3)
448BuildRequestData data = new BuildRequestData(Path.GetFullPath("TestFile"), new Dictionary<string, string>(), "TestToolsVersion", Array.Empty<string>(), null); 454BuildRequestData data2 = new BuildRequestData(Path.GetFullPath("OtherFile"), new Dictionary<string, string>(), "TestToolsVersion", Array.Empty<string>(), null); 472Assert.Equal(Path.GetFullPath("OtherFile"), _newConfiguration_Config.ProjectFullPath);
BackEnd\TaskRegistry_Tests.cs (4)
166Assert.Equal(taskAssemblyLoadInfo, AssemblyLoadInfo.Create(assemblyName, assemblyFile == null ? null : Path.GetFullPath(assemblyFile))); // "Task record was not properly registered by TaskRegistry.RegisterTask!" 271Assert.Equal(taskAssemblyLoadInfo, AssemblyLoadInfo.Create(assemblyName, assemblyFile == null ? null : Path.GetFullPath(assemblyFile))); // "Task record was not properly registered by TaskRegistry.RegisterTask!" 1150Assert.Equal(taskAssemblyLoadInfo, AssemblyLoadInfo.Create(expandedAssemblyName, expandedAssemblyFile == null ? null : Path.GetFullPath(expandedAssemblyFile))); // "Task record was not properly registered by TaskRegistry.RegisterTask!" 1203Assert.Equal(taskAssemblyLoadInfo, AssemblyLoadInfo.Create(expandedAssemblyName, Path.GetFullPath(expandedAssemblyFile))); // "Task record was not properly registered by TaskRegistry.RegisterTask!"
BinaryLogger_Tests.cs (1)
666string expectedLog = Path.GetFullPath(expectedBinlogFile);
Construction\SolutionFile_Tests.cs (2)
704p.SolutionFileDirectory = Path.GetFullPath(solutionFolder.Path); 2355solution.ProjectsInOrder[0].AbsolutePath.ShouldBe(Path.GetFullPath(Path.Combine(Path.GetDirectoryName(solution.FullPath)!, expectedRelativePath)));
Construction\SolutionProjectGenerator_Tests.cs (2)
1088tempProjectPath = Path.GetFullPath(tempProjectPath); 1093tempProjectPath = Path.GetFullPath(tempProjectPath);
Evaluation\Expander_Tests.cs (2)
3568$"{Path.GetFullPath("one")}{Path.DirectorySeparatorChar}", 3572$"{Path.GetFullPath(Path.Combine("one", "two"))}{Path.DirectorySeparatorChar}",
Evaluation\Preprocessor_Tests.cs (1)
1095string importPath = Path.GetFullPath(import.ProjectFile);
ProjectCache\ProjectCacheTests.cs (1)
52Path.GetFullPath(
TypeLoader_Tests.cs (1)
24private static string PortableTaskFolderPath = Path.GetFullPath(
Microsoft.Build.Tasks.Core (24)
AssemblyDependency\ReferenceTable.cs (1)
449reference.FullPath = Path.GetFullPath(assemblyFileName);
AssignTargetPath.cs (2)
55string fullRootPath = Path.GetFullPath(RootFolder); 107string itemSpecFullFileNamePath = Path.GetFullPath(Files[i].ItemSpec);
Copy.cs (2)
1058source.FileNameFullPath = Path.GetFullPath(source.Name); 1059destination.FileNameFullPath = Path.GetFullPath(destination.Name);
FileUtilities.cs (4)
503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
GenerateResource.cs (3)
2832return Path.GetFullPath(currentOutputFile); 2843currentOutputFile = Path.GetFullPath(currentOutputFile); 2863currentOutputFile = Path.GetFullPath(currentOutputFile);
ListOperators\FindUnderPath.cs (2)
62System.IO.Path.GetFullPath(FileUtilities.FixFilePath(Path.ItemSpec))); 83System.IO.Path.GetFullPath(FileUtilities.FixFilePath(item.ItemSpec)));
ManifestUtil\Manifest.cs (1)
331resolvedPath = Path.GetFullPath(resolvedPath);
ManifestUtil\PathUtil.cs (1)
229return Path.GetFullPath(path); // make sure it's a full path
ManifestUtil\Util.cs (1)
444key = Path.GetFullPath(item.ItemSpec).ToUpperInvariant();
Modifiers.cs (1)
663fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec));
ResolveManifestFiles.cs (2)
505var outputAssembliesMap = outputAssemblies.ToDictionary(p => Path.GetFullPath(p.ItemSpec), StringComparer.OrdinalIgnoreCase); 517string key = Path.GetFullPath(item.ItemSpec);
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
554string fullPath = Path.GetFullPath(reference);
SystemState.cs (1)
589string fullPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(stateFile.ToString()), relativePath));
Unzip.cs (2)
163string fullDestinationDirectoryPath = Path.GetFullPath(FileUtilities.EnsureTrailingSlash(destinationDirectory.FullName)); 173string fullDestinationPath = Path.GetFullPath(Path.Combine(destinationDirectory.FullName, zipArchiveEntry.FullName));
Microsoft.Build.Tasks.UnitTests (4)
AssemblyDependency\ResolveAssemblyReferenceTestFixture.cs (2)
861path = Path.GetFullPath(path); 1055path = Path.GetFullPath(path);
PortableTasks_Tests.cs (1)
22private static readonly string PortableTaskFolderPath = Path.GetFullPath(
ResourceHandling\GenerateResource_Tests.cs (1)
530string outputResource = Path.ChangeExtension(Path.GetFullPath(resxFile), ".resources");
Microsoft.Build.UnitTests.Shared (6)
EngineTestEnvironment.cs (3)
126var projectDir = Path.GetFullPath(Path.Combine(TestRoot, relativePathFromRootToProject)); 129ProjectFile = Path.GetFullPath(Path.Combine(projectDir, projectFileName)); 197string binaryLoggerFilePath = Path.GetFullPath(Path.Combine(TestRoot, Guid.NewGuid().ToString() + ".binlog"));
ObjectModelHelpers.cs (1)
1846var pathsSortedByDepth = paths.OrderByDescending(x => Path.GetDirectoryName(Path.GetFullPath(x)).Length);
TestEnvironment.cs (2)
752System.IO.Path.GetFullPath(Path).ShouldNotBe(System.IO.Path.GetFullPath(System.IO.Path.GetTempPath()));
Microsoft.Build.Utilities.Core (12)
FileUtilities.cs (5)
500return IsUNCPath(uncheckedFullPath) ? Path.GetFullPath(uncheckedFullPath) : uncheckedFullPath; 503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
FrameworkLocationHelper.cs (3)
921combinedPath = Path.GetFullPath(combinedPath); 932return Path.GetFullPath(combinedPath); 986return Path.GetFullPath(path);
Modifiers.cs (1)
663fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec));
ToolLocationHelper.cs (2)
3088string path = Path.GetFullPath(targetFrameworkDirectory); 3195pathToReturn = Path.GetFullPath(pathToReturn);
TrackedDependencies\FileTracker.cs (1)
401? Path.GetFullPath(path)
Microsoft.Build.Utilities.UnitTests (2)
ToolLocationHelper_Tests.cs (2)
715string tv12path = Path.Combine(Path.GetFullPath(toolsPath32.EvaluatedValue), "msbuild.exe"); 1973string fullPath = Path.GetFullPath(combinedPath);
Microsoft.Cci.Extensions (1)
HostEnvironment.cs (1)
395: Path.GetDirectoryName(Path.GetFullPath(referringUnit.Location));
Microsoft.DotNet.Arcade.Sdk (1)
src\LocateDotNet.cs (1)
79DotNetPath = Path.GetFullPath(Path.Combine(dotNetDir, fileName));
Microsoft.DotNet.Build.Tasks.Feed (3)
src\PublishArtifactsInManifestBase.cs (2)
1195Path.GetFullPath(Path.Combine(ArtifactsBasePath, Guid.NewGuid().ToString())); 1460Path.GetFullPath(Path.Combine(ArtifactsBasePath, Guid.NewGuid().ToString()));
src\PublishArtifactsInManifestV3.cs (1)
190Path.GetFullPath(Path.Combine(BlobAssetsBasePath, @"..\", "tempSymbols"));
Microsoft.DotNet.Build.Tasks.Packaging (1)
PackageIndex.cs (1)
71result.IndexSources.Add(Path.GetFullPath(packageIndexFile));
Microsoft.DotNet.Build.Tasks.Templating (1)
GenerateFileFromTemplate.cs (1)
59ResolvedOutputPath = Path.GetFullPath(OutputPath.Replace('\\', '/'));
Microsoft.DotNet.Build.Tasks.Workloads (3)
Msi\MsiBase.wix.cs (1)
247NuGetPackageFiles[Path.GetFullPath(msiJsonPath)] = "\\data\\msi.json";
Msi\WorkloadManifestMsi.wix.cs (2)
66foreach (var file in Directory.GetFiles(packageDataDirectory).Select(f => Path.GetFullPath(f))) 83string jsonFullPath = Path.GetFullPath(Path.Combine(jsonDirectory, "WorkloadPackGroups.json"));
Microsoft.DotNet.GenFacades (1)
GenPartialFacadeSourceGenerator.cs (1)
37string[] distinctSeeds = seeds.Select(seed => Path.GetFullPath(seed)).Distinct().ToArray();
Microsoft.DotNet.SignCheck (4)
SignCheck.cs (4)
271else if (File.Exists(Path.GetFullPath(inputFile))) 290inputFiles.Remove(Path.GetFullPath(Options.ErrorLogFile)); 295inputFiles.Remove(Path.GetFullPath(Options.LogFile)); 413Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(Options.ExclusionsOutput)));
Microsoft.DotNet.SignCheckLibrary (6)
Logging\FileLogger.cs (2)
35Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(messageFile))); 44Directory.CreateDirectory(Path.GetDirectoryName(Path.GetFullPath(errorFile)));
Verification\AuthentiCode.cs (1)
24pcwszFilePath = Path.GetFullPath(path),
Verification\ExeVerifier.cs (1)
45SignatureVerificationResult bundleEntryResult = VerifyFile(Path.GetFullPath(file), svr.Filename, payloadPath, Path.GetFileName(file));
Verification\MsuVerifier.cs (1)
35string cabFileFullName = Path.GetFullPath(cabFile);
Verification\SignatureVerificationResult.cs (1)
195FullPath = Path.GetFullPath(path);
Microsoft.DotNet.SignTool (1)
src\SignToolTask.cs (1)
329var directoryParts = Path.GetFullPath(Path.GetDirectoryName(itemToSign.ItemSpec)).Split(separators);
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (2)
Languages\Language.cs (2)
23string templateDirectory = Path.GetFullPath(Path.Combine( 30var relative = Path.GetFullPath(file);
Microsoft.DotNet.XliffTasks (2)
Tasks\GatherTranslatedSource.cs (1)
112dependentUpon = Path.GetFullPath(Path.Combine(sourceDirectory, dependentUpon));
Tasks\TranslateSource.cs (1)
41sourceDocument.RewriteRelativePathsToAbsolute(Path.GetFullPath(sourcePath));
Microsoft.Extensions.DependencyModel (1)
ApplicationEnvironment.cs (1)
16return Path.GetFullPath(basePath);
Microsoft.Extensions.FileProviders.Physical (3)
PhysicalFileProvider.cs (3)
61string fullRoot = Path.GetFullPath(root); 162string root = PathUtils.EnsureTrailingSlash(Path.GetFullPath(Root)); 238fullPath = Path.GetFullPath(Path.Combine(Root, path));
Microsoft.Extensions.FileSystemGlobbing (6)
InMemoryDirectoryInfo.cs (5)
49string normalizedRoot = Path.GetFullPath(rootDir.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar)); 57fileList.Add(Path.GetFullPath(fileWithNormalSeparators)); 61fileList.Add(Path.GetFullPath(Path.Combine(normalizedRoot, fileWithNormalSeparators))); 138string normPath = Path.GetFullPath(path.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar)); 150string normPath = Path.GetFullPath(path.Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar));
MatcherExtensions.cs (1)
64result.Add(Path.GetFullPath(Path.Combine(directoryPath, match.Path)));
Microsoft.Extensions.Hosting (1)
HostBuilder.cs (1)
259return Path.Combine(Path.GetFullPath(basePath), contentRootPath);
Microsoft.NET.Sdk.WebAssembly.Pack.Tasks (7)
ComputeWasmBuildAssets.cs (5)
114assetCandidate.SetMetadata("RelatedAsset", Path.GetFullPath(Path.Combine(OutputPath, "wwwroot", "_framework", Path.GetFileName(assetCandidate.GetMetadata("ResolvedFrom"))))); 130var originalFileFullPath = Path.GetFullPath(candidate.ItemSpec); 176var relatedAssetPath = Path.GetFullPath(Path.Combine( 211var assetCandidate = new TaskItem(Path.GetFullPath(projectSatelliteAssembly.ItemSpec), projectSatelliteAssembly.CloneCustomMetadata()); 212var projectAssemblyAssetPath = Path.GetFullPath(Path.Combine(
ComputeWasmPublishAssets.cs (2)
222newDotNetJs = new TaskItem(Path.GetFullPath(aotDotNetJs.ItemSpec), asset.CloneCustomMetadata()); 259newDotNetWasm = new TaskItem(Path.GetFullPath(aotDotNetWasm.ItemSpec), asset.CloneCustomMetadata());
Microsoft.VisualBasic.Core (10)
Microsoft\VisualBasic\CompilerServices\IOUtils.vb (1)
27DirName = Path.GetFullPath(PathName)
Microsoft\VisualBasic\FileIO\FileSystem.vb (8)
71baseDirectory = IO.Path.GetFullPath(baseDirectory) ' Throw exceptions if BaseDirectoryPath is invalid. 241IO.Path.GetFullPath(path) 476directory = IO.Path.GetFullPath(directory) 663directory = IO.Path.GetFullPath(directory) 840Return GetLongPath(RemoveEndingSeparator(IO.Path.GetFullPath(Path))) 1186Dim directoryFullPath As String = IO.Path.GetFullPath(directory) 1450Debug.Assert(Path.Equals(IO.Path.GetFullPath(Path)), Path) 1464Dim FullPath As String = RemoveEndingSeparator(IO.Path.GetFullPath(IO.Path.Combine(Path, NewName)))
Microsoft\VisualBasic\FileSystem.vb (1)
123Dim CurrentPath As String = Path.GetFullPath(Drive & Path.VolumeSeparatorChar & ".")
Microsoft.Web.Xdt.Extensions.Tests (4)
InsertOrAppendAttributeTests.cs (4)
16var transform = new XmlTransformation(Path.GetFullPath("transform.xdt")); 40var transform = new XmlTransformation(Path.GetFullPath("transform.xdt")); 64var transform = new XmlTransformation(Path.GetFullPath("transform.xdt")); 88var transform = new XmlTransformation(Path.GetFullPath("transform.xdt"));
MonoAOTCompiler (1)
MonoAOTCompiler.cs (1)
329OutputDir = Path.GetFullPath(OutputDir);
MSBuild (9)
FileUtilities.cs (5)
500return IsUNCPath(uncheckedFullPath) ? Path.GetFullPath(uncheckedFullPath) : uncheckedFullPath; 503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
Modifiers.cs (1)
663fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec));
ProjectSchemaValidationHandler.cs (1)
98projectFile = Path.GetFullPath(projectFile);
XMake.cs (2)
2183responseFile = Path.GetFullPath(responseFile); 3001projectDirectory = Path.GetDirectoryName(Path.GetFullPath(projectFile));
MSBuildTaskHost (6)
FileUtilities.cs (5)
500return IsUNCPath(uncheckedFullPath) ? Path.GetFullPath(uncheckedFullPath) : uncheckedFullPath; 503return Path.GetFullPath(path); 747internal static string ExecutingAssemblyPath => Path.GetFullPath(AssemblyUtilities.GetAssemblyLocation(typeof(FileUtilities).GetTypeInfo().Assembly)); 1131string fullBase = Path.GetFullPath(basePath); 1132string fullPath = Path.GetFullPath(path);
Modifiers.cs (1)
663fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec));
PresentationBuildTasks (11)
Microsoft\Build\Tasks\Windows\ResourcesGenerator.cs (3)
49_sourcePath = Path.GetFullPath(path); 266_outputPath = Path.GetFullPath(value); 371string fullFilePath = Path.GetFullPath(filePath);
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
3296string fullFilePath = Path.GetFullPath(_splashImage);
MS\Internal\MarkupCompiler\PathInternal.cs (2)
64relativeTo = Path.GetFullPath(relativeTo); 65path = Path.GetFullPath(path);
MS\Internal\Tasks\CompilerWrapper.cs (1)
401string fullFilePath = Path.GetFullPath(filePath);
MS\Internal\Tasks\IncrementalCompileAnalyzer.cs (3)
213string filepath = Path.GetFullPath(fileName); 468Path.GetFullPath(taskItem.ItemSpec), 499string fullPath = Path.GetFullPath(_mcPass1.ContentFiles[i].ItemSpec);
MS\Internal\Tasks\TaskHelper.cs (1)
82thePath = Path.GetFullPath(thePath);
PresentationCore (2)
System\Windows\clipboard.cs (1)
299string filePath = Path.GetFullPath(fileDrop);
System\Windows\dataobject.cs (1)
496string filePath = Path.GetFullPath(fileDrop);
PresentationFramework (3)
Microsoft\Win32\FileDialog.cs (1)
479string tempPath = Path.GetFullPath(fileName);
System\Windows\Shell\JumpList.cs (2)
139itemPath = Path.GetFullPath(itemPath); 1006return ShellUtil.GetShellItemForPath(Path.GetFullPath(jumpPath.Path));
ServerComparison.FunctionalTests (1)
Helpers.cs (1)
22return Path.GetFullPath(Path.Combine(directoryInfo.FullName, "..", "..", "testassets", "ServerComparison.TestSites"));
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\Hosting\DirectoryCatalog.cs (1)
741var fullPath = IOPath.GetFullPath(path);
System.Configuration.ConfigurationManager (9)
System\Configuration\ClientConfigPaths.cs (2)
46ApplicationUri = Path.GetFullPath(exePath); 105ApplicationConfigUri = Path.GetFullPath(externalConfigPath);
System\Configuration\ClientConfigurationHost.cs (4)
154_fileMap.MachineConfigFilename = Path.GetFullPath(fileMap.MachineConfigFilename); 160_fileMap.ExeConfigFilename = Path.GetFullPath(exeFileMap.ExeConfigFilename); 163_fileMap.RoamingUserConfigFilename = Path.GetFullPath(exeFileMap.RoamingUserConfigFilename); 166_fileMap.LocalUserConfigFilename = Path.GetFullPath(exeFileMap.LocalUserConfigFilename);
System\Configuration\Configuration.cs (1)
213filename = string.IsNullOrEmpty(filename) ? null : Path.GetFullPath(filename);
System\Configuration\Internal\InternalConfigHost.cs (2)
197streamName = Path.GetFullPath(streamName); 202result = Path.GetFullPath(result);
System.Data.Odbc (1)
Common\System\Data\Common\AdapterUtil.Odbc.cs (1)
651return Path.GetFullPath(filename);
System.Diagnostics.FileVersionInfo (1)
System\Diagnostics\FileVersionInfo.cs (1)
271fileName = Path.GetFullPath(fileName);
System.Diagnostics.Process (1)
System\Diagnostics\Process.Unix.cs (1)
649workingDirectory = workingDirectory != null ? Path.GetFullPath(workingDirectory) :
System.Diagnostics.TextWriterTraceListener (1)
System\Diagnostics\TextWriterTraceListener.cs (1)
227string fullPath = Path.GetFullPath(_fileName);
System.Formats.Tar (14)
System\Formats\Tar\TarEntry.cs (1)
385string fullPath = Path.GetFullPath(qualifiedPath); // Removes relative segments
System\Formats\Tar\TarFile.cs (12)
47sourceDirectoryName = Path.GetFullPath(sourceDirectoryName); 86sourceDirectoryName = Path.GetFullPath(sourceDirectoryName); 107sourceDirectoryName = Path.GetFullPath(sourceDirectoryName); 108destinationFileName = Path.GetFullPath(destinationFileName); 143sourceDirectoryName = Path.GetFullPath(sourceDirectoryName); 144destinationFileName = Path.GetFullPath(destinationFileName); 187destinationDirectoryName = Path.GetFullPath(destinationDirectoryName); 232destinationDirectoryName = Path.GetFullPath(destinationDirectoryName); 260sourceFileName = Path.GetFullPath(sourceFileName); 261destinationDirectoryName = Path.GetFullPath(destinationDirectoryName); 307sourceFileName = Path.GetFullPath(sourceFileName); 308destinationDirectoryName = Path.GetFullPath(destinationDirectoryName);
System\Formats\Tar\TarWriter.cs (1)
373string fullPath = Path.GetFullPath(fileName);
System.IO.Compression.ZipFile (4)
System\IO\Compression\ZipFile.Create.cs (3)
442sourceDirectoryName = Path.GetFullPath(sourceDirectoryName); 443destinationArchiveFileName = Path.GetFullPath(destinationArchiveFileName); 464sourceDirectoryName = Path.GetFullPath(sourceDirectoryName);
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (1)
117string fileDestinationPath = Path.GetFullPath(Path.Combine(destinationDirectoryFullPath, ArchivingUtils.SanitizeEntryFilePath(source.FullName)));
System.Net.Sockets (1)
System\Net\Sockets\UnixDomainSocketEndPoint.cs (1)
153return new UnixDomainSocketEndPoint(_path, Path.GetFullPath(_path));
System.Net.WebClient (3)
System\Net\WebClient.cs (3)
478fileName = Path.GetFullPath(fileName); 787return new Uri(Path.GetFullPath(address)); 792return new Uri(Path.GetFullPath(address));
System.Private.CoreLib (62)
src\libraries\System.Private.CoreLib\src\System\AppDomain.cs (1)
123string fullPath = Path.GetFullPath(assemblyFile);
src\libraries\System.Private.CoreLib\src\System\IO\Directory.cs (16)
20string fullPath = Path.GetFullPath(path); 32string fullPath = Path.GetFullPath(path); 89string fullPath = Path.GetFullPath(path); 102string fullPath = Path.GetFullPath(path); 108string fullPath = Path.GetFullPath(path); 124string fullPath = Path.GetFullPath(path); 130string fullPath = Path.GetFullPath(path); 146string fullPath = Path.GetFullPath(path); 152string fullPath = Path.GetFullPath(path); 253string fullPath = Path.GetFullPath(path); 265Environment.CurrentDirectory = Path.GetFullPath(path); 273FileSystem.MoveDirectory(Path.GetFullPath(sourceDirName), Path.GetFullPath(destDirName)); 278string fullPath = Path.GetFullPath(path); 284string fullPath = Path.GetFullPath(path); 310string fullPath = Path.GetFullPath(path);
src\libraries\System.Private.CoreLib\src\System\IO\Directory.Unix.cs (1)
20string fullPath = Path.GetFullPath(path);
src\libraries\System.Private.CoreLib\src\System\IO\DirectoryInfo.cs (4)
20fullPath: Path.GetFullPath(path), 34fullPath = isNormalized ? fullPath : Path.GetFullPath(fullPath); 83string newPath = Path.GetFullPath(Path.Combine(FullPath, path)); 209string destination = Path.GetFullPath(destDirName);
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEnumerator.cs (1)
37string path = isNormalized ? directory : Path.GetFullPath(directory);
src\libraries\System.Private.CoreLib\src\System\IO\File.cs (25)
56FileSystem.CopyFile(Path.GetFullPath(sourceFileName), Path.GetFullPath(destFileName), overwrite); 85FileSystem.DeleteFile(Path.GetFullPath(path)); 101path = Path.GetFullPath(path); 171return SafeFileHandle.Open(Path.GetFullPath(path), mode, access, share, options, preallocationSize); 182=> FileSystem.SetCreationTime(Path.GetFullPath(path), creationTime, asDirectory: false); 213=> FileSystem.SetCreationTime(Path.GetFullPath(path), GetUtcDateTimeOffset(creationTimeUtc), asDirectory: false); 245=> FileSystem.GetCreationTime(Path.GetFullPath(path)).LocalDateTime; 270=> FileSystem.GetCreationTime(Path.GetFullPath(path)).UtcDateTime; 295=> FileSystem.SetLastAccessTime(Path.GetFullPath(path), lastAccessTime, false); 326=> FileSystem.SetLastAccessTime(Path.GetFullPath(path), GetUtcDateTimeOffset(lastAccessTimeUtc), false); 357=> FileSystem.GetLastAccessTime(Path.GetFullPath(path)).LocalDateTime; 382=> FileSystem.GetLastAccessTime(Path.GetFullPath(path)).UtcDateTime; 407=> FileSystem.SetLastWriteTime(Path.GetFullPath(path), lastWriteTime, false); 438=> FileSystem.SetLastWriteTime(Path.GetFullPath(path), GetUtcDateTimeOffset(lastWriteTimeUtc), false); 469=> FileSystem.GetLastWriteTime(Path.GetFullPath(path)).LocalDateTime; 494=> FileSystem.GetLastWriteTime(Path.GetFullPath(path)).UtcDateTime; 519=> FileSystem.GetAttributes(Path.GetFullPath(path)); 543=> FileSystem.SetAttributes(Path.GetFullPath(path), fileAttributes); 860Path.GetFullPath(sourceFileName), 861Path.GetFullPath(destinationFileName), 862destinationBackupFileName != null ? Path.GetFullPath(destinationBackupFileName) : null, 882string fullSourceFileName = Path.GetFullPath(sourceFileName); 883string fullDestFileName = Path.GetFullPath(destFileName); 1193string fullPath = Path.GetFullPath(path);
src\libraries\System.Private.CoreLib\src\System\IO\File.Unix.cs (2)
11=> FileSystem.GetUnixFileMode(Path.GetFullPath(path)); 17=> FileSystem.SetUnixFileMode(Path.GetFullPath(path), mode);
src\libraries\System.Private.CoreLib\src\System\IO\FileInfo.cs (5)
28FullPath = isNormalized ? fullPath ?? originalPath : Path.GetFullPath(fullPath); 95string destinationPath = Path.GetFullPath(destFileName); 157string fullDestFileName = Path.GetFullPath(destFileName); 188Path.GetFullPath(destinationFileName), 189destinationBackupFileName != null ? Path.GetFullPath(destinationBackupFileName) : null,
src\libraries\System.Private.CoreLib\src\System\IO\Path.cs (3)
103fullPath = GetFullPath(path); 873relativeTo = GetFullPath(relativeTo); 874path = GetFullPath(path);
src\libraries\System.Private.CoreLib\src\System\IO\Strategies\OSFileStreamStrategy.cs (1)
42string fullPath = Path.GetFullPath(path);
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (3)
285string normalizedPath = Path.GetFullPath(path); 328requestorPath = Path.GetFullPath(requestorPath); 383string fullPath = Path.GetFullPath(assemblyFile);
System.Private.Xml (1)
System\Xml\XmlResolver.cs (1)
48uri = new Uri(Path.GetFullPath(relativeUri!));
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\OpenSslCachedSystemStoreProvider.cs (2)
330return Path.GetFullPath(rootFile); 344directories[i] = Path.GetFullPath(directories[i]);
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (1)
417_ = Path.GetFullPath(fileName);
TaskUsageLogger (1)
TaskUsageLogger.cs (1)
256evaluatedTaskAssemblyPath = Path.GetFullPath(evaluatedTaskAssemblyPath);
Templates.Blazor.Tests (1)
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
42public static string CustomHivePath { get; } = Path.GetFullPath((string.IsNullOrEmpty(Environment.GetEnvironmentVariable("helix")))
Templates.Blazor.WebAssembly.Auth.Tests (2)
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
42public static string CustomHivePath { get; } = Path.GetFullPath((string.IsNullOrEmpty(Environment.GetEnvironmentVariable("helix")))
src\Shared\E2ETesting\WaitAssert.cs (1)
122var screenShotPath = Path.Combine(Path.GetFullPath(E2ETestOptions.Instance.ScreenShotsPath), fileId);
Templates.Blazor.WebAssembly.Tests (2)
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
42public static string CustomHivePath { get; } = Path.GetFullPath((string.IsNullOrEmpty(Environment.GetEnvironmentVariable("helix")))
src\Shared\E2ETesting\WaitAssert.cs (1)
122var screenShotPath = Path.Combine(Path.GetFullPath(E2ETestOptions.Instance.ScreenShotsPath), fileId);
Templates.Mvc.Tests (2)
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
42public static string CustomHivePath { get; } = Path.GetFullPath((string.IsNullOrEmpty(Environment.GetEnvironmentVariable("helix")))
src\Shared\E2ETesting\WaitAssert.cs (1)
122var screenShotPath = Path.Combine(Path.GetFullPath(E2ETestOptions.Instance.ScreenShotsPath), fileId);
Templates.Tests (4)
ByteOrderMarkTest.cs (2)
48var filePath = Path.GetFullPath(file); 86var filePath = Path.GetFullPath(file);
src\ProjectTemplates\Shared\TemplatePackageInstaller.cs (1)
42public static string CustomHivePath { get; } = Path.GetFullPath((string.IsNullOrEmpty(Environment.GetEnvironmentVariable("helix")))
src\Shared\E2ETesting\WaitAssert.cs (1)
122var screenShotPath = Path.Combine(Path.GetFullPath(E2ETestOptions.Instance.ScreenShotsPath), fileId);
TestExclusionListTasks (2)
src\tasks\AndroidAppBuilder\ApkBuilder.cs (2)
530else if (Path.GetFullPath(signingKey) != Path.GetFullPath(defaultKey))
Wasm.Performance.Driver (1)
Program.cs (1)
263Path.GetFullPath(typeof(Program).Assembly.GetCustomAttributes<AssemblyMetadataAttribute>()
WasmAppBuilder (3)
WasmAppBuilder.cs (2)
307string firstPath = Path.GetFullPath(targetPathTable[targetPath]!); 308string secondPath = Path.GetFullPath(item.ItemSpec);
WasmLoadAssembliesAndReferences.cs (1)
47var asmFullPath = Path.GetFullPath(asm);
xunit.console (6)
CommandLine.cs (1)
83return Path.GetFullPath(fileName);
common\AssemblyResolution\DependencyContextAssemblyCache.cs (3)
211var assemblyPath = Path.Combine(Path.GetFullPath(assemblyFolder), assemblyName); 241resolvedAssemblyPath = Path.GetFullPath(resolvedAssemblyPath); 283return Path.GetFullPath(resolvedAssemblyPath);
common\AssemblyResolution\Microsoft.DotNet.PlatformAbstractions\ApplicationEnvironment.cs (1)
16return Path.GetFullPath(basePath);
common\AssemblyResolution\Microsoft.Extensions.DependencyModel\Resolution\ResolverUtils.cs (1)
29fullName = Path.GetFullPath(Path.Combine(basePath, assemblyPath));