20 references to Join
Aspire.Hosting (1)
ApplicationModel\CertificateTrustConfigurationCallbackAnnotation.cs (1)
132var bundleFilename = IsContainer ? $"{RootCertificatesPath}/bundles/{bundleId}" : Path.Join(RootCertificatesPath, "bundles", bundleId);
Aspire.Hosting.Python (4)
PythonAppResourceBuilderExtensions.cs (2)
979interpreterPath = Path.Join(venvPath, "Scripts", "python.exe"); 983interpreterPath = Path.Join(venvPath, "bin", "python");
VirtualEnvironment.cs (2)
26return Path.Join(virtualEnvironmentPath, "Scripts", name + ".exe"); 29return Path.Join(virtualEnvironmentPath, "bin", name);
Aspire.Hosting.Python.Tests (4)
AddPythonAppTests.cs (4)
368? Path.Join(expectedVenvPath, "Scripts", "python.exe") 369: Path.Join(expectedVenvPath, "bin", "python"); 454Assert.Equal(Path.Join(venvDir.FullName, "Scripts", "python.exe"), pythonProjectResource.Command); 458Assert.Equal(Path.Join(venvDir.FullName, "bin", "python"), pythonProjectResource.Command);
dotnet (4)
Commands\Run\CSharpCompilerCommand.cs (3)
231string objDir = Path.Join(ArtifactsPath, "obj", "debug"); 233string binDir = Path.Join(ArtifactsPath, "bin", "debug"); 412var frameworkListPath = Path.Join(packRoot, "data", "FrameworkList.xml");
Commands\Run\FileBasedAppRunPlan.cs (1)
345string binDirectory = Path.Join(artifactsPath, "bin", "debug");
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Run\FileBasedAppRunPlan.cs (1)
345string binDirectory = Path.Join(artifactsPath, "bin", "debug");
Microsoft.NET.Build.Containers (1)
ContentStore.cs (1)
111return Path.Join(userHomeDirectory, "Library", "Caches");
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\LinuxIPv4InterfaceProperties.cs (1)
41Path.Join(NetworkFiles.Ipv4ConfigFolder, _linuxNetworkInterface.Name, NetworkFiles.ForwardingFileName),
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Path.cs (4)
515return Join(path2, path3, path4); 518return Join(path1, path3, path4); 521return Join(path1, path2, path4); 524return Join(path1, path2, path3);