From bd1747e3d932004422e8dbe77dd36a2154c04983 Mon Sep 17 00:00:00 2001 From: Julian Verdurmen <5808377+304NotModified@users.noreply.github.com> Date: Sat, 23 Aug 2025 23:17:25 +0200 Subject: [PATCH] Remove xunit3 (for now) --- Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj | 3 --- .../UI/ViewModels/AddNewReqnrollProjectViewModel.cs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj b/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj index 8e276435..3860337a 100644 --- a/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj +++ b/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj @@ -10,9 +10,6 @@ $if$ ('$unittestframework$' == 'xUnit') - $endif$$if$ ('$unittestframework$' == 'xUnit3') - - $endif$$if$ ('$unittestframework$' == 'NUnit') diff --git a/Reqnroll.VisualStudio/UI/ViewModels/AddNewReqnrollProjectViewModel.cs b/Reqnroll.VisualStudio/UI/ViewModels/AddNewReqnrollProjectViewModel.cs index cbb5bb04..8914952c 100644 --- a/Reqnroll.VisualStudio/UI/ViewModels/AddNewReqnrollProjectViewModel.cs +++ b/Reqnroll.VisualStudio/UI/ViewModels/AddNewReqnrollProjectViewModel.cs @@ -32,7 +32,7 @@ public string DotNetFramework // See https://xceed.com/fluent-assertions-faq/ // Maybe we could consider suggesting https://github.com/shouldly/shouldly instead. public bool FluentAssertionsIncluded { get; set; } = false; - public ObservableCollection TestFrameworks { get; } = new(new List { "MSTest", "NUnit", "xUnit", "xUnit.v3", "TUnit" }); + public ObservableCollection TestFrameworks { get; } = new(new List { "MSTest", "NUnit", "xUnit", "TUnit" }); public event PropertyChangedEventHandler PropertyChanged;