Browse Source

Fix path separator in solution file and improve docs

Replaced backslash with forward slash in the project path for TickerQ demo app in the solution file to ensure consistency across platforms. Also clarified documentation on configuring TimeTicker properties for specific jobs.
pull/23802/head
EngincanV 10 months ago
parent
commit
76300f4999
  1. 2
      docs/en/framework/infrastructure/background-jobs/tickerq.md
  2. 2
      modules/background-jobs/Volo.Abp.BackgroundJobs.slnx

2
docs/en/framework/infrastructure/background-jobs/tickerq.md

@ -69,7 +69,7 @@ app.UseAbpTickerQ(startMode: ...);
### AbpBackgroundJobsTickerQOptions
You can configure the `TimeTicker` properties for specific jobs. For example, Change `Priority`, `Retries` and `RetryIntervals` properties:
You can configure the `TimeTicker` properties for specific jobs. For example, you can change `Priority`, `Retries` and `RetryIntervals` properties as shown below:
```csharp
Configure<AbpBackgroundJobsTickerQOptions>(options =>

2
modules/background-jobs/Volo.Abp.BackgroundJobs.slnx

@ -5,7 +5,7 @@
<Project Path="app/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq/Volo.Abp.BackgroundJobs.DemoApp.RabbitMq.csproj" />
<Project Path="app/Volo.Abp.BackgroundJobs.DemoApp.Shared/Volo.Abp.BackgroundJobs.DemoApp.Shared.csproj" />
<Project Path="app/Volo.Abp.BackgroundJobs.DemoApp/Volo.Abp.BackgroundJobs.DemoApp.csproj" />
<Project Path="app\Volo.Abp.BackgroundJobs.DemoApp.TickerQ\Volo.Abp.BackgroundJobs.DemoApp.TickerQ.csproj" />
<Project Path="app/Volo.Abp.BackgroundJobs.DemoApp.TickerQ/Volo.Abp.BackgroundJobs.DemoApp.TickerQ.csproj" />
</Folder>
<Folder Name="/src/">
<Project Path="src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo.Abp.BackgroundJobs.Domain.Shared.csproj" />

Loading…
Cancel
Save