Skip to content

Commit 7e030ee

Browse files
Merge pull request #72 from atc-net/feature/update-nuget-for-new-success-emojis
Feature/update nuget for new success emojis
2 parents 813dc28 + 2a9b9fb commit 7e030ee

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

src/Atc.CodingRules.AnalyzerProviders/Atc.CodingRules.AnalyzerProviders.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Atc" Version="2.0.52" />
12+
<PackageReference Include="Atc" Version="2.0.55" />
1313
<PackageReference Include="HtmlAgilityPack" Version="1.11.42" />
1414
</ItemGroup>
1515

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Atc" Version="2.0.52" />
16-
<PackageReference Include="Atc.Console.Spectre" Version="2.0.52" />
15+
<PackageReference Include="Atc" Version="2.0.55" />
16+
<PackageReference Include="Atc.Console.Spectre" Version="2.0.55" />
1717
<PackageReference Include="EPPlus" Version="5.8.6" />
1818
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
1919
</ItemGroup>

src/Atc.CodingRules.Updater.CLI/Commands/AnalyzerProvidersCacheCleanupCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public override int Execute(CommandContext context)
2121
return ConsoleExitStatusCodes.Failure;
2222
}
2323

24-
logger.LogInformation($"{EmojisConstants.Done} Done");
24+
logger.LogInformation($"{EmojisConstants.Success} Done");
2525
return ConsoleExitStatusCodes.Success;
2626
}
2727
}

src/Atc.CodingRules.Updater.CLI/Commands/AnalyzerProvidersCollectCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ await AnalyzerProviderBaseRulesHelper.GetAnalyzerProviderBaseRules(
3737
return ConsoleExitStatusCodes.Failure;
3838
}
3939

40-
logger.LogInformation($"{EmojisConstants.Done} Done");
40+
logger.LogInformation($"{EmojisConstants.Success} Done");
4141
return ConsoleExitStatusCodes.Success;
4242
}
4343

src/Atc.CodingRules.Updater.CLI/Commands/OptionsFileCreateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private async Task<int> ExecuteInternalAsync(
3939
return ConsoleExitStatusCodes.Failure;
4040
}
4141

42-
logger.LogInformation($"{EmojisConstants.Done} Done");
42+
logger.LogInformation($"{EmojisConstants.Success} Done");
4343
return ConsoleExitStatusCodes.Success;
4444
}
4545
}

src/Atc.CodingRules.Updater.CLI/Commands/OptionsFileValidateCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private async Task<int> ExecuteInternalAsync(
4242
return ConsoleExitStatusCodes.Failure;
4343
}
4444

45-
logger.LogInformation($"{EmojisConstants.Done} Done");
45+
logger.LogInformation($"{EmojisConstants.Success} Done");
4646
return ConsoleExitStatusCodes.Success;
4747
}
4848
}

src/Atc.CodingRules.Updater.CLI/Commands/RunCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ await ProjectHelper.HandleFiles(
5757
return ConsoleExitStatusCodes.Failure;
5858
}
5959

60-
logger.LogInformation($"{EmojisConstants.Done} Done");
60+
logger.LogInformation($"{EmojisConstants.Success} Done");
6161
return ConsoleExitStatusCodes.Success;
6262
}
6363

src/Atc.CodingRules.Updater.CLI/Commands/SanityCheckCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private async Task<int> ExecuteInternalAsync(
3333
return ConsoleExitStatusCodes.Failure;
3434
}
3535

36-
logger.LogInformation($"{EmojisConstants.Done} Done");
36+
logger.LogInformation($"{EmojisConstants.Success} Done");
3737
return ConsoleExitStatusCodes.Success;
3838
}
3939

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Atc" Version="2.0.52" />
9-
<PackageReference Include="Atc.DotNet" Version="2.0.52" />
10-
<PackageReference Include="Atc.Console.Spectre" Version="2.0.52" />
8+
<PackageReference Include="Atc" Version="2.0.55" />
9+
<PackageReference Include="Atc.DotNet" Version="2.0.55" />
10+
<PackageReference Include="Atc.Console.Spectre" Version="2.0.55" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Atc.CodingRules/Atc.CodingRules.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Atc" Version="2.0.52" />
10+
<PackageReference Include="Atc" Version="2.0.55" />
1111
</ItemGroup>
1212

1313
</Project>

0 commit comments

Comments
 (0)