-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from dolunay/master
netcore 8 + quartz 3.7.0 + many minor changes
- Loading branch information
Showing
33 changed files
with
336 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@ECHO off | ||
cls | ||
|
||
ECHO Deleting all BIN and OBJ folders... | ||
ECHO. | ||
|
||
FOR /d /r . %%d in (bin,obj,LocalNuget) DO ( | ||
IF EXIST "%%d" ( | ||
ECHO %%d | FIND /I "\node_modules\" > Nul && ( | ||
ECHO.Skipping: %%d | ||
) || ( | ||
ECHO.Deleting: %%d | ||
rd /s/q "%%d" | ||
) | ||
) | ||
) | ||
|
||
ECHO. | ||
ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit. | ||
pause > nul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Quartz; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SilkierQuartz.Example.Jobs | ||
{ | ||
public class LongRunningJob : IJob | ||
{ | ||
public async Task Execute(IJobExecutionContext context) | ||
{ | ||
Console.WriteLine("Long Started"); | ||
await Task.Delay(30000);//half min | ||
Console.WriteLine("Long Running"); | ||
await Task.Delay(30000);//half min | ||
Console.WriteLine("Long Complete"); | ||
await Task.CompletedTask; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Quartz; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SilkierQuartz.Example.Jobs | ||
{ | ||
public class LongRunningJob : IJob | ||
{ | ||
public async Task Execute(IJobExecutionContext context) | ||
{ | ||
Console.WriteLine("Long Started"); | ||
await Task.Delay(30000);//half min | ||
Console.WriteLine("Long Running"); | ||
await Task.Delay(30000);//half min | ||
Console.WriteLine("Long Complete"); | ||
await Task.CompletedTask; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UserSecretsId>aspnet-WebApplication1-A527D1EB-9052-4CB4-84DF-96A390FE8CC1</UserSecretsId> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UserSecretsId>aspnet-WebApplication1-A527D1EB-9052-4CB4-84DF-96A390FE8CC1</UserSecretsId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.4" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.4" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.4" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.4" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.4" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\src\Quartz.Plugins.RecentHistory\Quartz.Plugins.RecentHistory.csproj" /> | ||
<ProjectReference Include="..\src\SilkierQuartz\SilkierQuartz.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\src\Quartz.Plugins.RecentHistory\Quartz.Plugins.RecentHistory.csproj" /> | ||
<ProjectReference Include="..\src\SilkierQuartz\SilkierQuartz.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 32 additions & 33 deletions
65
src/Quartz.Plugins.RecentHistory/Quartz.Plugins.RecentHistory.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0</TargetFrameworks> | ||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>1591</NoWarn> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6.0</TargetFrameworks> | ||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | ||
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<NoWarn>1591</NoWarn> | ||
<Version>8.0.1</Version> | ||
<Product>SilkierQuartz</Product> | ||
<Title>Quartz.NET plugin to persist recent job execution history</Title> | ||
<Authors>Jan Lucansky,Maikebing</Authors> | ||
<PackageProjectUrl>https://github.com/jlucansky/SilkierQuartz</PackageProjectUrl> | ||
<Description>This is supporting package for SilkierQuartz</Description> | ||
<PackageTags>quartz;recent;history</PackageTags> | ||
<AssemblyVersion>1.0.0.0</AssemblyVersion> | ||
<FileVersion>1.0.0.0</FileVersion> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<Copyright>Copyright © 2018 Jan Lucansky, Copyright © 2020 Maikebing</Copyright> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/jlucansky/SilkierQuartz</RepositoryUrl> | ||
<PackageId>SilkierQuartz.Plugins.RecentHistory</PackageId> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<Version>1.0.3</Version> | ||
<Product>SilkierQuartz</Product> | ||
<Title>Quartz.NET plugin to persist recent job execution history</Title> | ||
<Authors>Jan Lucansky,Maikebing</Authors> | ||
<PackageProjectUrl>https://github.com/jlucansky/SilkierQuartz</PackageProjectUrl> | ||
<Description>This is supporting package for SilkierQuartz</Description> | ||
<PackageTags>quartz;recent;history</PackageTags> | ||
<AssemblyVersion>1.0.0.0</AssemblyVersion> | ||
<FileVersion>1.0.0.0</FileVersion> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<Copyright>Copyright © 2018 Jan Lucansky, Copyright © 2020 Maikebing</Copyright> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/jlucansky/SilkierQuartz</RepositoryUrl> | ||
<PackageId>SilkierQuartz.Plugins.RecentHistory</PackageId> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\..\LICENSE" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\.editorconfig" Link=".editorconfig" /> | ||
<None Include="..\..\LICENSE" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Quartz" Version="3.7.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Quartz" Version="3.3.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="*.vspscc" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="*.vspscc" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.