Skip to content

Commit 4644641

Browse files
committed
Replaced NUnit with xUnit
1 parent d8eb972 commit 4644641

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

FocusInit.sln.DotSettings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ Copyright (c) Spatial Focus GmbH. All rights reserved.
212212
<s:Boolean x:Key="/Default/UserDictionary/Words/=classlib/@EntryIndexedValue">True</s:Boolean>
213213
<s:Boolean x:Key="/Default/UserDictionary/Words/=editorconfig/@EntryIndexedValue">True</s:Boolean>
214214
<s:Boolean x:Key="/Default/UserDictionary/Words/=gitignore/@EntryIndexedValue">True</s:Boolean>
215-
<s:Boolean x:Key="/Default/UserDictionary/Words/=nunit/@EntryIndexedValue">True</s:Boolean>
216215
<s:Boolean x:Key="/Default/UserDictionary/Words/=stylecop/@EntryIndexedValue">True</s:Boolean>
217216
<s:Boolean x:Key="/Default/UserDictionary/Words/=Wasm/@EntryIndexedValue">True</s:Boolean>
218217
<s:Boolean x:Key="/Default/UserDictionary/Words/=webapi/@EntryIndexedValue">True</s:Boolean>
218+
<s:Boolean x:Key="/Default/UserDictionary/Words/=xunit/@EntryIndexedValue">True</s:Boolean>
219219
</wpf:ResourceDictionary>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ After setting up one of these demo projects, typical generic projects can be add
2626

2727
- Business (class library for business logic)
2828
- Shared (class library for shared data)
29-
- Test (nunit test project)
29+
- Test (xUnit test project)
3030

3131
## Install the dotnet tool
3232

3333
```
34-
dotnet tool install --global SpatialFocus.FocusInit --version 0.3.0
34+
dotnet tool install --global SpatialFocus.FocusInit --version 0.4.0
3535
```
3636

3737
Install the tool globally. You can invoke the tool using the following command: `focus-init`

src/FocusInit/FocusInit.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<ToolCommandName>focus-init</ToolCommandName>
99
<PackageOutputPath>./nupkg</PackageOutputPath>
1010

11-
<Version>0.3.0</Version>
11+
<Version>0.4.0</Version>
1212
<PackageId>SpatialFocus.FocusInit</PackageId>
1313
<Title>Spatial Focus initialize project wizard</Title>
14-
<Description>DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and license settings, and optionally add projects.</Description>
14+
<Description>DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and MSBuild settings, and optionally add projects.</Description>
1515
<PackageTags>tool, scaffolding, code-style, code-quality</PackageTags>
1616
<PackageProjectUrl>https://github.com/SpatialFocus/FocusInit</PackageProjectUrl>
1717
<PackageIcon>icon.png</PackageIcon>

src/FocusInit/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ private static void CreateProjects(string solutionName)
160160

161161
if (Prompt.GetYesNo("Create test project?", false, ConsoleColor.DarkCyan))
162162
{
163-
string testProject = cliHelper.CreateProject("nunit", "Test");
163+
string testProject = cliHelper.CreateProject("xunit", "Test");
164164

165165
cliHelper.AddProjectToSolution(testProject);
166166

0 commit comments

Comments
 (0)