Skip to content

Commit

Permalink
add a separate NuGet package for hangfire cron
Browse files Browse the repository at this point in the history
  • Loading branch information
hoseinzadehashraf committed Jun 22, 2023
1 parent b457dee commit e8f8835
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/publish_Olive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@ jobs:
PROJECT_FILE_PATH: Olive.Hangfire/Olive.Hangfire.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}

- name: Publish Olive Hangfire Cron NuGet Package
uses: Geeksltd/publish-nuget@v2
with:
PROJECT_FILE_PATH: Olive.Hangfire.Cron/Olive.Hangfire.Cron.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}

- name: Publish Olive Hangfire MySql NuGet Package
uses: Geeksltd/publish-nuget@v2
with:
Expand Down
File renamed without changes.
8 changes: 8 additions & 0 deletions Olive.Hangfire.Cron/Olive.Hangfire.Cron.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>1.0.0</Version>
</PropertyGroup>

</Project>
7 changes: 7 additions & 0 deletions Olive.sln
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Olive.Aws.Textract", "Olive
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Olive.Aws.Comprehend", "Olive.Aws.Comprehend\Olive.Aws.Comprehend.csproj", "{588FD83B-91BF-460B-BDCC-FF84D7E6B417}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Olive.Hangfire.Cron", "Olive.Hangfire.Cron\Olive.Hangfire.Cron.csproj", "{17718CC2-C817-4E1C-8E6E-CBCFC698D995}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -545,6 +547,10 @@ Global
{588FD83B-91BF-460B-BDCC-FF84D7E6B417}.Debug|Any CPU.Build.0 = Debug|Any CPU
{588FD83B-91BF-460B-BDCC-FF84D7E6B417}.Release|Any CPU.ActiveCfg = Release|Any CPU
{588FD83B-91BF-460B-BDCC-FF84D7E6B417}.Release|Any CPU.Build.0 = Release|Any CPU
{17718CC2-C817-4E1C-8E6E-CBCFC698D995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{17718CC2-C817-4E1C-8E6E-CBCFC698D995}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17718CC2-C817-4E1C-8E6E-CBCFC698D995}.Release|Any CPU.ActiveCfg = Release|Any CPU
{17718CC2-C817-4E1C-8E6E-CBCFC698D995}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -637,6 +643,7 @@ Global
{72EE0ABC-9CB8-43FC-81AC-833417184AD5} = {50102A6B-6A9D-47FE-B21B-1968F24A4CCF}
{61E86F2D-4693-4629-93A6-1A6D9EC59892} = {6A937A37-1CEC-4347-9594-C471645B43DA}
{588FD83B-91BF-460B-BDCC-FF84D7E6B417} = {6A937A37-1CEC-4347-9594-C471645B43DA}
{17718CC2-C817-4E1C-8E6E-CBCFC698D995} = {B08CEA40-4865-41AF-94CA-AC59E2513A11}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B8459027-6FAF-42E6-B8A8-4887D7730704}
Expand Down
2 changes: 1 addition & 1 deletion Olive/Olive.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.1.341</Version>
<Version>2.1.342</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit e8f8835

Please sign in to comment.