Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
v7.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-nitehawk committed Feb 3, 2023
1 parent 11967bf commit 9b3660e
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 168 deletions.
8 changes: 7 additions & 1 deletion MongoWebApiStarterTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>

<PackageVersion>7.8.0</PackageVersion>
<PackageVersion>7.8.1</PackageVersion>

<PackageType>Template</PackageType>
<PackageId>MongoWebApiStarter</PackageId>
Expand Down Expand Up @@ -34,6 +34,12 @@
<None Remove="Template\Source\obj\**" />
</ItemGroup>

<ItemGroup>
<None Remove="Template\Source\Entities\vs.editorconfig" />
<None Remove="Template\Source\[Features]\vs.editorconfig" />
<None Remove="Template\vs.editorconfig" />
</ItemGroup>

<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ A full-featured starter template for `dotnet new` to quickly scaffold an Asp.Net

## Install & Scaffold
```csharp
dotnet new -i MongoWebApiStarter
dotnet new install MongoWebApiStarter
dotnet new mongowebapi -n MyAwesomeApp
```

Expand Down
153 changes: 0 additions & 153 deletions Template/.lutignore

This file was deleted.

10 changes: 3 additions & 7 deletions Template/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@
},
"sourceName": "MongoWebApiStarter",
"preferNameDirectory": true,
"symbols": {
"name": {
"type": "parameter",
"defaultValue": "MongoWebApiStarter",
"replaces": "MongoWebApiStarter"
}
},
"sources": [
{
"rename": {
"vs.editorconfig": ".editorconfig"
},
"exclude": [
"**/.vs/**",
"**/dp_keys/**",
Expand Down
6 changes: 0 additions & 6 deletions Template/MongoWebApiStarter.lutconfig

This file was deleted.

3 changes: 3 additions & 0 deletions Template/Source/Entities/vs.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# CS8618: Non-nullable field is uninitialized. Consider declaring as nullable.
[{*.cs}]
dotnet_diagnostic.CS8618.severity = none
2 changes: 2 additions & 0 deletions Template/Source/MongoWebApiStarter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@

<ItemGroup>
<None Update="Properties\launchSettings.json" CopyToOutputDirectory="Always" />
<!--#if (remove) -->
<None Include="..\..\changelog.md" Link="Content\ChangeLog" Pack="false"></None>
<None Include="..\..\MongoWebApiStarterTemplate.csproj" Link="Content\Version" Pack="false"></None>
<!--#endif -->
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions Template/Source/[Features]/vs.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# CS8618: Non-nullable field is uninitialized. Consider declaring as nullable.
[{*Request*.cs,*Response*.cs,*Model*.cs}]
dotnet_diagnostic.CS8618.severity = none
9 changes: 9 additions & 0 deletions Template/vs.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[*.cs]

# RCS1090: Call 'ConfigureAwait(false)'.
dotnet_diagnostic.RCS1090.severity = none

# RCS1079: Throwing of new NotImplementedException.
dotnet_diagnostic.RCS1079.severity = silent

dotnet_diagnostic.IDE1006.severity = silent
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- code cleanups & minor refactors
- add `.editorconfig` files
- upgrade dependencies to latest

0 comments on commit 9b3660e

Please sign in to comment.