Skip to content

Commit

Permalink
ef core 9 package for MySql
Browse files Browse the repository at this point in the history
  • Loading branch information
win7user10 committed Nov 19, 2024
1 parent 07d46ff commit 7147dae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:

- name: Build project
run: |
for p in $(find ./src -name *.csproj -not -name *MySql*); do dotnet build $p --framework ${{env.PROJECT_TARGET}} --configuration Release; done
for p in $(find ./src -name *.csproj); do dotnet build $p --framework ${{env.PROJECT_TARGET}} --configuration Release; done
- name: Generate a NuGet package
run: |
for p in $(find ./src -name *.csproj -not -name *MySql*); do dotnet pack $p -p:TargetFrameworks=${{env.PROJECT_TARGET}} -p:PackageVersion=${{env.RELEASE_VERSION}} --no-build -c Release -o .; done
for p in $(find ./src -name *.csproj); do dotnet pack $p -p:TargetFrameworks=${{env.PROJECT_TARGET}} -p:PackageVersion=${{env.RELEASE_VERSION}} --no-build -c Release -o .; done
- name: Push to GitHub package registry
run: dotnet nuget push "*.nupkg" -k ${{secrets.NUGETORGTOKEN}} -s https://api.nuget.org/v3/index.json --skip-duplicate
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
<Description>Generating native MySql triggers through migrations using EFCore entity builder.</Description>
<RepositoryUrl>https://github.com/win7user10/Laraue.EfCoreTriggers</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 7147dae

Please sign in to comment.