Skip to content

Commit

Permalink
use different project name for extracted scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
VSadov committed Jun 19, 2021
1 parent 6eab3b4 commit 820aacc
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,15 @@ public void No_runtime_files_6_0()
[InlineData(false)]
public void It_supports_composite_r2r(bool extractAll)
{
var projName = "SingleFileTest";
if (extractAll)
{
projName += "Extracted";
}

var testProject = new TestProject()
{
Name = "SingleFileTest",
Name = projName,
TargetFrameworks = "net6.0",
IsExe = true,
};
Expand Down

0 comments on commit 820aacc

Please sign in to comment.