diff --git a/FocusInit.sln.DotSettings b/FocusInit.sln.DotSettings
index 02fca77..3f88ac7 100644
--- a/FocusInit.sln.DotSettings
+++ b/FocusInit.sln.DotSettings
@@ -212,8 +212,8 @@ Copyright (c) Spatial Focus GmbH. All rights reserved.
True
True
True
- True
True
True
True
+ True
\ No newline at end of file
diff --git a/README.md b/README.md
index 34cc17e..4f4c2e5 100644
--- a/README.md
+++ b/README.md
@@ -26,12 +26,12 @@ After setting up one of these demo projects, typical generic projects can be add
- Business (class library for business logic)
- Shared (class library for shared data)
-- Test (nunit test project)
+- Test (xUnit test project)
## Install the dotnet tool
```
-dotnet tool install --global SpatialFocus.FocusInit --version 0.3.0
+dotnet tool install --global SpatialFocus.FocusInit --version 0.4.0
```
Install the tool globally. You can invoke the tool using the following command: `focus-init`
diff --git a/src/FocusInit/FocusInit.csproj b/src/FocusInit/FocusInit.csproj
index d98798e..842d3bd 100644
--- a/src/FocusInit/FocusInit.csproj
+++ b/src/FocusInit/FocusInit.csproj
@@ -8,10 +8,10 @@
focus-init
./nupkg
- 0.3.0
+ 0.4.0
SpatialFocus.FocusInit
Spatial Focus initialize project wizard
- DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and license settings, and optionally add projects.
+ DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and MSBuild settings, and optionally add projects.
tool, scaffolding, code-style, code-quality
https://github.com/SpatialFocus/FocusInit
icon.png
diff --git a/src/FocusInit/Program.cs b/src/FocusInit/Program.cs
index 4d179aa..cf93a50 100644
--- a/src/FocusInit/Program.cs
+++ b/src/FocusInit/Program.cs
@@ -160,7 +160,7 @@ private static void CreateProjects(string solutionName)
if (Prompt.GetYesNo("Create test project?", false, ConsoleColor.DarkCyan))
{
- string testProject = cliHelper.CreateProject("nunit", "Test");
+ string testProject = cliHelper.CreateProject("xunit", "Test");
cliHelper.AddProjectToSolution(testProject);