Introduce source generators package

Update dependencies
This commit is contained in:
2024-08-28 15:24:18 +02:00
parent 00459fc59b
commit 552b72b1b9
9 changed files with 307 additions and 11 deletions
+6
View File
@@ -55,6 +55,9 @@ jobs:
- name: Build SystemExtensions.NetStandard.Security project
run: dotnet build SystemExtensions.NetStandard.Security -c $env:Configuration
- name: Build SystemExtensions.NetStandard.Generators project
run: dotnet build SystemExtensions.NetStandard.Generators -c $env:Configuration
- name: Package SystemExtensions.NetStandard
run: dotnet pack -c Release -o . SystemExtensions.NetStandard\SystemExtensions.NetStandard.csproj
@@ -67,5 +70,8 @@ jobs:
- name: Package SystemExtensions.NetStandard.Security
run: dotnet pack -c Release -o . SystemExtensions.NetStandard.Security\SystemExtensions.NetStandard.Security.csproj
- name: Package SystemExtensions.NetStandard.Generators
run: dotnet pack -c Release -o . SystemExtensions.NetStandard.Generators\SystemExtensions.NetStandard.Generators.csproj
- name: Publish
run: dotnet nuget push *.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate