Skip to content

Commit

Permalink
remove Makefile;
Browse files Browse the repository at this point in the history
remove --include-symbols from github;
  • Loading branch information
lif0 committed Jan 1, 2024
1 parent f58d110 commit 5c56c90
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/github-actions-push-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- run: echo ${{ steps.get_version.outputs.version-without-v }}

- name: Pack project
run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --no-build --configuration Release --include-symbols -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
run: dotnet pack ${{ env.PROJECT_PATH }} --no-restore --no-build --configuration Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}

- name: Publish package
run: dotnet nuget push ${{ env.PACKAGE_OUTPUT_DIRECTORY }}/*.nupkg -k ${{ secrets.NUGET_AUTH_TOKEN }} -s ${{ env.NUGET_SOURCE_URL }}
2 changes: 1 addition & 1 deletion src/FabulousScheduler.Cron/FabulousScheduler.Cron.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<PackageId>FabulousScheduler.Cron</PackageId>
<Authors>Kadi Gasanguseynov</Authors>
<Description>Lightweight, low memory, smooth execution, cron job scheduler</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/FabulousScheduler.Queue/FabulousScheduler.Queue.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<PackageId>FabulousScheduler.Queue</PackageId>
<Authors>Kadi Gasanguseynov</Authors>
<Description>Lightweight, low memory, smooth execution, queue job scheduler</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/FabulousScheduler/FabulousScheduler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<PackageId>FabulousScheduler</PackageId>
<Authors>Kadi Gasanguseynov</Authors>
<Description>Lightweight, low memory, smooth execution, cron and queue job scheduler</Description>
Expand Down

0 comments on commit 5c56c90

Please sign in to comment.