public void DotnetBuildDoesNotPrintCopyrightInfo() { var testInstance = _testAssetsManager.CopyTestAsset("MSBuildTestApp") .WithSource() .Restore(Log); var cmd = new DotnetBuildCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute("--nologo"); cmd.Should().Pass(); if (!TestContext.IsLocalized()) { cmd.Should().NotHaveStdOutContaining("Copyright (C) Microsoft Corporation. All rights reserved."); } }
public void ItPrintsBuildSummary() { var testAppName = "MSBuildTestApp"; var testInstance = _testAssetsManager.CopyTestAsset(testAppName) .WithSource() .Restore(Log); string expectedBuildSummary = @"Build succeeded. 0 Warning(s) 0 Error(s)"; var cmd = new DotnetBuildCommand(Log) .WithWorkingDirectory(testInstance.Path) .Execute(); cmd.Should().Pass(); cmd.StdOut.Should().ContainVisuallySameFragmentIfNotLocalized(expectedBuildSummary); }
public void WhenMinimumOSPlatformIsHigherThanTargetPlatformVersionItShouldError() { TestProject testProject = SetUpProject(); var targetPlatformIdentifier = "iOS"; testProject.AdditionalProperties["TargetPlatformIdentifier"] = targetPlatformIdentifier; testProject.AdditionalProperties["TargetPlatformVersion"] = "13.2"; testProject.AdditionalProperties["MinimumOSPlatform"] = "14.0"; var testAsset = _testAssetsManager.CreateTestProject(testProject); var buildCommand = new DotnetBuildCommand(Log, Path.Combine(testAsset.Path, "Project", "Project.csproj")); buildCommand.Execute() .Should() .Fail().And.HaveStdOutContaining("NETSDK1135"); }
public void ItBuildsARunnableOutput() { var testAppName = "MSBuildTestApp"; var testInstance = _testAssetsManager.CopyTestAsset(testAppName) .WithSource(); var buildCommand = new DotnetBuildCommand(Log, testInstance.Path); buildCommand .Execute() .Should().Pass(); var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug"; var outputDll = Path.Combine(testInstance.Path, "bin", configuration, "netcoreapp3.1", $"{testAppName}.dll"); var outputRunCommand = new DotnetCommand(Log); outputRunCommand.Execute(outputDll) .Should().Pass() .And.HaveStdOutContaining("Hello World"); }