47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.DotNet.Tests.EndToEnd
|
|
{
|
|
public class GivenDotNetUsesMSBuild : TestBase
|
|
{
|
|
[Fact]
|
|
public void ItCanNewRestoreBuildRunMSBuildProject()
|
|
{
|
|
using (DisposableDirectory directory = Temp.CreateDirectory())
|
|
{
|
|
string projectDirectory = directory.Path;
|
|
|
|
new NewCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.Execute("-t msbuild")
|
|
.Should()
|
|
.Pass();
|
|
|
|
new Restore3Command()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.Execute()
|
|
.Should()
|
|
.Pass();
|
|
|
|
new Build3Command()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.Execute()
|
|
.Should()
|
|
.Pass();
|
|
|
|
//TODO: https://github.com/dotnet/sdk/issues/187 - remove framework from below.
|
|
new Run3Command()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput("--framework netcoreapp1.0")
|
|
.Should()
|
|
.Pass()
|
|
.And
|
|
.HaveStdOutContaining("Hello World!");
|
|
}
|
|
}
|
|
}
|
|
}
|