diff --git a/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj b/Reqnroll.VisualStudio.ProjectTemplate/ProjectTemplate.csproj
index 8e27643..3860337 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 cbb5bb0..8914952 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;