1 write to ProjectPath
Microsoft.NET.TestFramework (1)
OutputPathCalculator.cs (1)
51
ProjectPath
= projectPath,
8 references to ProjectPath
Microsoft.NET.TestFramework (8)
OutputPathCalculator.cs (8)
192
return Path.Combine(ArtifactsPath ?? string.Empty, "bin", Path.GetFileNameWithoutExtension(
ProjectPath
) ?? string.Empty, pivot);
208
string output = Path.Combine(Path.GetDirectoryName(
ProjectPath
) ?? string.Empty, "bin", platform, configuration, targetFramework, runtimeIdentifier);
213
string output = Path.Combine(Path.GetDirectoryName(
ProjectPath
) ?? string.Empty, "bin", platform, configuration);
239
return Path.Combine(ArtifactsPath ?? string.Empty, "publish", Path.GetFileNameWithoutExtension(
ProjectPath
) ?? string.Empty, pivot);
253
string output = Path.Combine(Path.GetDirectoryName(
ProjectPath
) ?? string.Empty, "bin", platform, configuration, targetFramework, runtimeIdentifier, "publish");
278
return Path.Combine(ArtifactsPath ?? string.Empty, "obj", Path.GetFileNameWithoutExtension(
ProjectPath
) ?? string.Empty, pivot);
291
string output = Path.Combine(Path.GetDirectoryName(
ProjectPath
) ?? string.Empty, "obj", configuration, targetFramework, runtimeIdentifier);
303
return Path.Combine(Path.GetDirectoryName(
ProjectPath
) ?? string.Empty, "bin", configuration);