From 32b800c2537c3acf8dd6e9fc3cd3c1e47232fe31 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 11 Mar 2024 02:15:15 +0000 Subject: [PATCH 1/5] Update dependency Workleap.DotNet.CodingStandards to v0.2.0 --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 9bf91b0..9081a53 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -5,6 +5,6 @@ - + \ No newline at end of file From 09006d463a0af767d293efc781d70b868826e46e Mon Sep 17 00:00:00 2001 From: He Qian Wang Date: Wed, 3 Apr 2024 14:46:34 -0400 Subject: [PATCH 2/5] Skip package publication if there are duplicates --- Build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.ps1 b/Build.ps1 index 5b6ab1d..15da8e4 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -35,7 +35,7 @@ Process { # Push to a NuGet feed if the environment variables are set if (($null -ne $env:NUGET_SOURCE ) -and ($null -ne $env:NUGET_API_KEY)) { - Exec { & dotnet nuget push "$nupkgsPath" -s $env:NUGET_SOURCE -k $env:NUGET_API_KEY } + Exec { & dotnet nuget push "$nupkgsPath" -s $env:NUGET_SOURCE -k $env:NUGET_API_KEY --skip-duplicate } } } finally { From bbc6ae1ab920b6db12caaa6620dbcf58e1b1f8f9 Mon Sep 17 00:00:00 2001 From: He Qian Wang Date: Fri, 3 May 2024 15:23:44 -0400 Subject: [PATCH 3/5] Remove skip-duplicate --- Build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.ps1 b/Build.ps1 index 15da8e4..5b6ab1d 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -35,7 +35,7 @@ Process { # Push to a NuGet feed if the environment variables are set if (($null -ne $env:NUGET_SOURCE ) -and ($null -ne $env:NUGET_API_KEY)) { - Exec { & dotnet nuget push "$nupkgsPath" -s $env:NUGET_SOURCE -k $env:NUGET_API_KEY --skip-duplicate } + Exec { & dotnet nuget push "$nupkgsPath" -s $env:NUGET_SOURCE -k $env:NUGET_API_KEY } } } finally { From 3d92e27da39402aefdfd6a23c5a90632bb2ed8c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Barr=C3=A9?= Date: Mon, 10 Jun 2024 17:51:00 +0000 Subject: [PATCH 4/5] Update version --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 9081a53..f8a25a9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -5,6 +5,6 @@ - + \ No newline at end of file From 3f7760d7510389dd1c52280799f5189ea4524473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Barr=C3=A9?= Date: Mon, 10 Jun 2024 17:56:16 +0000 Subject: [PATCH 5/5] Disable warnings --- tools/ConfigurationFilesGenerator/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ConfigurationFilesGenerator/Program.cs b/tools/ConfigurationFilesGenerator/Program.cs index 56d8a9d..c922290 100644 --- a/tools/ConfigurationFilesGenerator/Program.cs +++ b/tools/ConfigurationFilesGenerator/Program.cs @@ -1,4 +1,5 @@ #pragma warning disable IDE0058 // Expression value is never used +#pragma warning disable SA1649 // File name should match first type name using System.Globalization; using System.Runtime.Loader; using System.Xml.Linq;