10 references to GetPublishDirectory
dotnet.Tests (4)
CommandTests\Publish\GivenDotnetPublishPublishesProjects.cs (4)
39
var outputDll = Path.Combine(OutputPathCalculator.FromProject(testProjectDirectory).
GetPublishDirectory
(configuration: configuration), $"{testAppName}.dll");
300
return new DirectoryInfo(OutputPathCalculator.FromProject(testProjectDirectory).
GetPublishDirectory
(configuration: configuration, runtimeIdentifier: rid));
322
var outputProgram = Path.Combine(OutputPathCalculator.FromProject(rootDir).
GetPublishDirectory
(configuration: configuration), $"TestAppSimple.dll");
374
var outputProgram = Path.Combine(OutputPathCalculator.FromProject(rootPath).
GetPublishDirectory
(configuration: configuration, runtimeIdentifier: rid), $"TestAppSimple.dll");
Microsoft.NET.Build.Tests (2)
ArtifactsOutputPathTests.cs (2)
118
new FileInfo(Path.Combine(outputPathCalculator.
GetPublishDirectory
(configuration: "release"), testProject.Name + ".dll"))
578
var publishDir = new DirectoryInfo(OutputPathCalculator.FromProject(testAsset.Path, testProject).
GetPublishDirectory
(configuration: "release"));
Microsoft.NET.Publish.Tests (3)
GivenThatWeWantToPublishTrimmedWindowsFormsAndWPFApps.cs (2)
153
var publishDirectory = OutputPathCalculator.FromProject(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).
GetPublishDirectory
(
225
var publishDirectory = OutputPathCalculator.FromProject(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).
GetPublishDirectory
(
PublishWpfApp.cs (1)
53
var publishDirectory = OutputPathCalculator.FromProject(Path.Combine(testDir.Path, Path.GetFileName(testDir.Path) + ".csproj")).
GetPublishDirectory
(
Microsoft.NET.TestFramework (1)
Commands\PublishCommand.cs (1)
28
return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).
GetPublishDirectory
(targetFramework, configuration, runtimeIdentifier, platformIdentifier));