GivenThatWeWantToBuildASolutionWithProjRefDiffCase.cs 853 B

1234567891011121314151617181920212223242526
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. namespace Microsoft.NET.Build.Tests
  4. {
  5. public class GivenThatWeWantToBuildASolutionWithProjRefDiffCase : SdkTest
  6. {
  7. public GivenThatWeWantToBuildASolutionWithProjRefDiffCase(ITestOutputHelper log) : base(log)
  8. {
  9. }
  10. [PlatformSpecificFact(TestPlatforms.Windows | TestPlatforms.OSX)]
  11. public void ItBuildsTheSolutionSuccessfully()
  12. {
  13. const string solutionFile = "AppWithProjRefCaseDiff.sln";
  14. var asset = _testAssetsManager
  15. .CopyTestAsset("AppWithProjRefCaseDiff")
  16. .WithSource();
  17. var command = new BuildCommand(asset, solutionFile);
  18. command.Execute().Should().Pass();
  19. }
  20. }
  21. }