Skip to content

Commit

Permalink
Replaced NUnit with xUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
pergerch committed May 18, 2020
1 parent d8eb972 commit 4644641
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FocusInit.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ Copyright (c) Spatial Focus GmbH. All rights reserved.
<s:Boolean x:Key="/Default/UserDictionary/Words/=classlib/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=editorconfig/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=gitignore/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=nunit/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=stylecop/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Wasm/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=webapi/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=xunit/@EntryIndexedValue">True</s:Boolean>
</wpf:ResourceDictionary>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
4 changes: 2 additions & 2 deletions src/FocusInit/FocusInit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<ToolCommandName>focus-init</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>

<Version>0.3.0</Version>
<Version>0.4.0</Version>
<PackageId>SpatialFocus.FocusInit</PackageId>
<Title>Spatial Focus initialize project wizard</Title>
<Description>DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and license settings, and optionally add projects.</Description>
<Description>DotNet Tool for initializing an empty folder, create a solution with stylecop, ReSharper and MSBuild settings, and optionally add projects.</Description>
<PackageTags>tool, scaffolding, code-style, code-quality</PackageTags>
<PackageProjectUrl>https://github.com/SpatialFocus/FocusInit</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
Expand Down
2 changes: 1 addition & 1 deletion src/FocusInit/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 4644641

Please sign in to comment.