Skip to content

Commit 2fe68c6

Browse files
Merge pull request #70 from atc-net/hotfix/cleanup
Cleanup project files
2 parents 49c8959 + b3d35fa commit 2fe68c6

File tree

7 files changed

+5
-13
lines changed

7 files changed

+5
-13
lines changed

.github/workflows/pre-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- reopened
99

1010
jobs:
11-
dotnet5-build:
11+
dotnet-build:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -36,7 +36,7 @@ jobs:
3636
dotnet-test:
3737
runs-on: ubuntu-latest
3838
needs:
39-
- dotnet5-build
39+
- dotnet-build
4040
steps:
4141
- name: 🛒 Checkout repository
4242
uses: actions/checkout@v2

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<ItemGroup Label="Code Analyzers">
4444
<PackageReference Include="AsyncFixer" Version="1.5.1" PrivateAssets="All" />
4545
<PackageReference Include="Asyncify" Version="0.9.7" PrivateAssets="All" />
46-
<PackageReference Include="Meziantou.Analyzer" Version="1.0.688" PrivateAssets="All" />
46+
<PackageReference Include="Meziantou.Analyzer" Version="1.0.689" PrivateAssets="All" />
4747
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.0" PrivateAssets="All" />
4848
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
4949
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.35.0.42613" PrivateAssets="All" />

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ A successful installation will output something like
3838

3939
```powershell
4040
The tool can be invoked by the following command: atc-coding-rules-updater
41-
Tool 'atc-coding-rules-updater' (version '1.0.xxx') was successfully installed.`
41+
Tool 'atc-coding-rules-updater' (version '2.0.xxx') was successfully installed.`
4242
```
4343

4444
### Update
@@ -51,7 +51,7 @@ dotnet tool update --global atc-coding-rules-updater
5151

5252
### Usage
5353

54-
Since the tool is published as a .NET Core Tool, it can be launched from anywhere using any shell or command-line interface by calling **atc-coding-rules-updater**. The help information is displayed when providing the `--help` argument to **atc-coding-rules-updater**
54+
Since the tool is published as a .NET Tool, it can be launched from anywhere using any shell or command-line interface by calling **atc-coding-rules-updater**. The help information is displayed when providing the `--help` argument to **atc-coding-rules-updater**
5555

5656
#### Option <span style="color:yellow">--help</span>
5757
```powershell

src/Atc.CodingRules.Updater.CLI/Atc.CodingRules.Updater.CLI.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<OutputType>Exe</OutputType>
1010
<AssemblyName>atc-coding-rules-updater</AssemblyName>
1111
<PackAsTool>true</PackAsTool>
12-
<IncludeSymbols>false</IncludeSymbols>
1312
</PropertyGroup>
1413

1514
<ItemGroup>

src/Atc.CodingRules.Updater.CLI/GlobalUsings.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
global using System;
2-
global using System.Collections.Generic;
32
global using System.Collections.ObjectModel;
43
global using System.Data;
54
global using System.Diagnostics;
65
global using System.Diagnostics.CodeAnalysis;
76
global using System.Globalization;
8-
global using System.IO;
9-
global using System.Linq;
107
global using System.Text;
118
global using System.Text.Json;
12-
global using System.Threading.Tasks;
139

1410
global using Atc.CodingRules.AnalyzerProviders;
1511
global using Atc.CodingRules.AnalyzerProviders.Models;

src/Atc.CodingRules.Updater/Atc.CodingRules.Updater.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
75
</PropertyGroup>
86

97
<ItemGroup>

test/Atc.CodingRules.AnalyzerProviders.Tests/Atc.CodingRules.AnalyzerProviders.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
65
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87

0 commit comments

Comments
 (0)