51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.AspNetCore.Razor.Design.IntegrationTests
|
|
{
|
|
public abstract class MSBuildIntegrationTestBase
|
|
{
|
|
private static readonly AsyncLocal<ProjectDirectory> _project = new AsyncLocal<ProjectDirectory>();
|
|
|
|
protected MSBuildIntegrationTestBase()
|
|
{
|
|
}
|
|
|
|
#if DEBUG
|
|
protected string Configuration => "Debug";
|
|
#elif RELEASE
|
|
protected string Configuration => "Release";
|
|
#else
|
|
#error Configuration not supported
|
|
#endif
|
|
|
|
protected string IntermediateOutputPath => Path.Combine("obj", Configuration, TargetFramework);
|
|
|
|
protected string OutputPath => Path.Combine("bin", Configuration, TargetFramework);
|
|
|
|
// Used by the test framework to set the project that we're working with
|
|
internal static ProjectDirectory Project
|
|
{
|
|
get { return _project.Value; }
|
|
set { _project.Value = value; }
|
|
}
|
|
|
|
protected string RazorIntermediateOutputPath => Path.Combine(IntermediateOutputPath, "Razor");
|
|
|
|
protected string TargetFramework { get; set; } = "netcoreapp2.0";
|
|
|
|
internal Task<MSBuildResult> DotnetMSBuild(string target, string args = null, bool suppressRestore = false, bool suppressTimeout = false)
|
|
{
|
|
var timeout = suppressTimeout ? (TimeSpan?)Timeout.InfiniteTimeSpan : null;
|
|
var restoreArgument = suppressRestore ? "" : "/restore";
|
|
|
|
return MSBuildProcessManager.RunProcessAsync(Project, $"{restoreArgument} /t:{target} /p:Configuration={Configuration} {args}", timeout);
|
|
}
|
|
}
|
|
}
|