7 references to FromProject
dotnet.Tests (1)
ShellShimTests\ShellShimRepositoryTests.cs (1)
510var outputDirectory = new DirectoryInfo(OutputPathCalculator.FromProject(testInstance.Path, testInstance).GetOutputDirectory(configuration: configuration));
Microsoft.NET.TestFramework (6)
Commands\DotnetBuildCommand.cs (1)
36return new DirectoryInfo(OutputPathCalculator.FromProject(projectPath, TestAsset)
Commands\GetValuesCommand.cs (1)
49_targetFramework = targetFramework ?? OutputPathCalculator.FromProject(ProjectFile, testAsset).TargetFramework ?? string.Empty;
Commands\MSBuildCommand.cs (3)
77return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetOutputDirectory(targetFramework, configuration, runtimeIdentifier, platform)); 93return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetIntermediateDirectory(targetFramework, configuration, runtimeIdentifier)); 108return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetPackageDirectory(configuration));
Commands\PublishCommand.cs (1)
28return new DirectoryInfo(OutputPathCalculator.FromProject(ProjectFile, TestAsset).GetPublishDirectory(targetFramework, configuration, runtimeIdentifier, platformIdentifier));