This repository was archived by the owner on Apr 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
NetCoreEntityFramework/Models Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
2020 dotnet-version : 3.1.301
2121
2222 - name : Install dependencies
23- run : dotnet restore **/*.sln
23+ run : dotnet restore
2424
2525 - name : Build
26- run : dotnet build --configuration Release --no-restore **/*.sln
26+ run : dotnet build --configuration Release --no-restore
2727
2828 - name : Generate NuGet package
2929 run : |
3030 cd NetCoreEntityFramework
3131 dotnet pack --configuration Release --output out --no-build
3232
3333 - name : Push generated package to NuGet.org
34- run : dotnet nuget push ./NetCoreEntityFramework/out/ *.nupkg --skip-duplicate --no-symbols true --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
34+ run : dotnet nuget push * *.nupkg --skip-duplicate --no-symbols true --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public abstract class EntityBase
88 {
99 [ Key ]
1010 [ DatabaseGenerated ( DatabaseGeneratedOption . Identity ) ]
11- public Guid ? Id { get ; set ; }
11+ public Guid ? Id { get ; set ; }
1212
1313 [ Required ]
1414 public DateTime Created { get ; set ; }
You can’t perform that action at this time.
0 commit comments