From 27503dcd9f1bb57db6db863d95b9172070a9ac3c Mon Sep 17 00:00:00 2001 From: Matt DeKrey Date: Sat, 2 Apr 2022 07:26:35 -0500 Subject: [PATCH 1/4] Add readme --- readme.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d6ff19d --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +A tool that automatically fixes issues according to Roslyn analyzers in a C# codebase. + +Still in prototyping phase, but maybe [`dotnet-format`](https://github.com/dotnet/format) will do what our original goal was. From 7a201bf550f56ef568965b24ecf5db1ad3947782 Mon Sep 17 00:00:00 2001 From: Matt DeKrey Date: Sat, 2 Apr 2022 07:29:04 -0500 Subject: [PATCH 2/4] Fake version bump to see if we can publish --- Directory.Build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index bfb843d..963f079 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -12,10 +12,10 @@ - 0.1.1 + 0.1.2-alpha.0 - + From 4524280e1a5c5dc1393cdfe0a3646b45f597bad4 Mon Sep 17 00:00:00 2001 From: Matt DeKrey Date: Sat, 2 Apr 2022 07:32:11 -0500 Subject: [PATCH 3/4] Remove parameter from `--no-symbols` --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8be7e69..9a6cd82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,11 +33,11 @@ jobs: - name: Publish tool to GitHub registry if new version number if: ${{ github.ref != 'refs/heads/main' }} - run: dotnet nuget push ./**/nupkg/*.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/$GITHUB_REPOSITORY_OWNER/index.json --skip-duplicate --no-symbols 1 + run: dotnet nuget push ./**/nupkg/*.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/$GITHUB_REPOSITORY_OWNER/index.json --skip-duplicate --no-symbols env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Publish tool to NuGet registry if new version number if: ${{ github.ref == 'refs/heads/main' }} - run: dotnet nuget push ./**/nupkg/*.nupkg -k ${NUGET_API_KEY} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols 1 + run: dotnet nuget push ./**/nupkg/*.nupkg -k ${NUGET_API_KEY} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} From c89e49a156188551dd89df7ff69579063e3d7f28 Mon Sep 17 00:00:00 2001 From: Matt DeKrey Date: Sat, 2 Apr 2022 07:42:17 -0500 Subject: [PATCH 4/4] Put old version back --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 963f079..0c21041 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -12,7 +12,7 @@ - 0.1.2-alpha.0 + 0.1.1