diff --git a/Tests/Tests.FNA.csproj b/Tests/Tests.FNA.csproj index 652c0f7..73db59b 100644 --- a/Tests/Tests.FNA.csproj +++ b/Tests/Tests.FNA.csproj @@ -3,6 +3,7 @@ net7.0 nunit TestResults.FNA + Tests.FNA.runsettings Tests $(DefineConstants);FNA false diff --git a/Tests/Tests.FNA.runsettings b/Tests/Tests.FNA.runsettings new file mode 100644 index 0000000..1e01c28 --- /dev/null +++ b/Tests/Tests.FNA.runsettings @@ -0,0 +1,12 @@ + + + + + + + [MLEM*.FNA]* + + + + + diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index 1eeadef..c224dd3 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -3,6 +3,7 @@ net7.0 nunit TestResults + Tests.runsettings false diff --git a/Tests/Tests.runsettings b/Tests/Tests.runsettings index 980781b..08b2d69 100644 --- a/Tests/Tests.runsettings +++ b/Tests/Tests.runsettings @@ -4,7 +4,8 @@ - [FNA]*,[FontStashSharp.FNA]*,[Tests*]* + [MLEM*]* + [*.FNA]* diff --git a/build.cake b/build.cake index 6dd3a3e..e41a8f2 100644 --- a/build.cake +++ b/build.cake @@ -32,8 +32,7 @@ Task("Build").IsDependentOn("Prepare").Does(() =>{ Task("Test").IsDependentOn("Build").Does(() => { var settings = new DotNetTestSettings { Configuration = config, - Collectors = {"XPlat Code Coverage"}, - Settings = "Tests/Tests.runsettings" + Collectors = {"XPlat Code Coverage"} }; DotNetTest("MLEM.sln", settings); DotNetTest("MLEM.FNA.sln", settings);