├── .gitignore ├── .nuget ├── NuGet.exe ├── packages.config └── packages.lock.json ├── COPYING ├── COPYING.LESSER ├── Directory.Build.props ├── Hangfire.DynamicJobs.sln ├── LICENSE ├── LICENSE_ROYALTYFREE ├── LICENSE_STANDARD ├── NuGet.config ├── README.md ├── appveyor.yml ├── nuspecs ├── Hangfire.DynamicJobs.nuspec └── icon.png ├── psake-project.ps1 ├── samples ├── Hangfire.Microservices.Dashboard │ ├── Hangfire.Microservices.Dashboard.csproj │ ├── Program.cs │ ├── Startup.cs │ └── packages.lock.json ├── Hangfire.Microservices.NewsletterService │ ├── Hangfire.Microservices.NewsletterService.csproj │ ├── NewsletterSender.cs │ ├── Program.cs │ ├── Startup.cs │ └── packages.lock.json └── Hangfire.Microservices.OrdersService │ ├── Hangfire.Microservices.OrdersService.csproj │ ├── OrderSubmitter.cs │ ├── Program.cs │ ├── Startup.cs │ └── packages.lock.json ├── src ├── Directory.Build.props ├── Hangfire.DynamicJobs │ ├── DynamicJob.cs │ ├── DynamicJobDisplayNameAttribute.cs │ ├── DynamicJobFilterProvider.cs │ ├── DynamicJobGlobalConfigurationExtensions.cs │ ├── DynamicJobRecurringJobManagerExtensions.cs │ ├── DynamicRecurringJobOptions.cs │ ├── Hangfire.DynamicJobs.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.lock.json └── SharedAssemblyInfo.cs └── tests ├── Directory.Build.props └── Hangfire.DynamicJobs.Tests ├── Hangfire.DynamicJobs.Tests.csproj └── packages.lock.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /.nuget/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/.nuget/packages.lock.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Hangfire.DynamicJobs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/Hangfire.DynamicJobs.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_ROYALTYFREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/LICENSE_ROYALTYFREE -------------------------------------------------------------------------------- /LICENSE_STANDARD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/LICENSE_STANDARD -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nuspecs/Hangfire.DynamicJobs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/nuspecs/Hangfire.DynamicJobs.nuspec -------------------------------------------------------------------------------- /nuspecs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/nuspecs/icon.png -------------------------------------------------------------------------------- /psake-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/psake-project.ps1 -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.Dashboard/Hangfire.Microservices.Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.Dashboard/Hangfire.Microservices.Dashboard.csproj -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.Dashboard/Program.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.Dashboard/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.Dashboard/Startup.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.Dashboard/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.Dashboard/packages.lock.json -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.NewsletterService/Hangfire.Microservices.NewsletterService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.NewsletterService/Hangfire.Microservices.NewsletterService.csproj -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.NewsletterService/NewsletterSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.NewsletterService/NewsletterSender.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.NewsletterService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.NewsletterService/Program.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.NewsletterService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.NewsletterService/Startup.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.NewsletterService/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.NewsletterService/packages.lock.json -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.OrdersService/Hangfire.Microservices.OrdersService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.OrdersService/Hangfire.Microservices.OrdersService.csproj -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.OrdersService/OrderSubmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.OrdersService/OrderSubmitter.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.OrdersService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.OrdersService/Program.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.OrdersService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.OrdersService/Startup.cs -------------------------------------------------------------------------------- /samples/Hangfire.Microservices.OrdersService/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/samples/Hangfire.Microservices.OrdersService/packages.lock.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicJob.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicJobDisplayNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicJobDisplayNameAttribute.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicJobFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicJobFilterProvider.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicJobGlobalConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicJobGlobalConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicJobRecurringJobManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicJobRecurringJobManagerExtensions.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/DynamicRecurringJobOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/DynamicRecurringJobOptions.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/Hangfire.DynamicJobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/Hangfire.DynamicJobs.csproj -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hangfire.DynamicJobs/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/Hangfire.DynamicJobs/packages.lock.json -------------------------------------------------------------------------------- /src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Hangfire.DynamicJobs.Tests/Hangfire.DynamicJobs.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/tests/Hangfire.DynamicJobs.Tests/Hangfire.DynamicJobs.Tests.csproj -------------------------------------------------------------------------------- /tests/Hangfire.DynamicJobs.Tests/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HangfireIO/Hangfire.DynamicJobs/HEAD/tests/Hangfire.DynamicJobs.Tests/packages.lock.json --------------------------------------------------------------------------------