Skip to content

Commit

Permalink
longpathstuffyay
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Feb 15, 2024
1 parent e152bb7 commit 471a3d0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ public void Build(string id, string framework, string config, bool shouldPack)
}

[Test]
[TestCase("maui-multiproject", DotNetCurrent, "Debug")]
[TestCase("maui-multiproject", DotNetCurrent, "Release")]
public void BuildMultiProjectProject(string id, string framework, string config)
[TestCase("Debug")]
[TestCase("Release")]
public void BuildMultiProject(string config)
{
var projectDir = TestDirectory;
var name = Path.GetFileName(projectDir);
var solutionFile = Path.Combine(projectDir, $"{name}.sln");

Assert.IsTrue(DotnetInternal.New(id, projectDir, framework),
$"Unable to create template {id}. Check test output for errors.");
Assert.IsTrue(DotnetInternal.New("maui-multiproject", projectDir, DotNetCurrent),
$"Unable to create template maui-multiproject. Check test output for errors.");

Assert.IsTrue(DotnetInternal.New("sln", projectDir),
$"Unable to create solution. Check test output for errors.");
Expand Down

0 comments on commit 471a3d0

Please sign in to comment.