Skip to content

Commit d4eb72f

Browse files
committed
save
1 parent 436850e commit d4eb72f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

samples/ScheduleDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
});
3535

3636
// Enable scheduled tasks support
37-
builder.EnableScheduledTasksSupport();
3837
builder.UseDurableTaskScheduler(connectionString);
38+
builder.EnableScheduledTasksSupport();
3939
});
4040

4141
// Configure the client

samples/ScheduleDemo/ScheduleDemo.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@
1010
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
1111
<PackageReference Include="Azure.Identity" Version="1.13.1" />
1212
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
13-
<PackageReference Include="Microsoft.DurableTask.Client.AzureManaged" Version="1.5.0-preview.1" />
14-
<PackageReference Include="Microsoft.DurableTask.Worker.AzureManaged" Version="1.5.0-preview.1" />
13+
<!-- <PackageReference Include="Microsoft.DurableTask.Client.AzureManaged" Version="1.5.0-preview.1" />
14+
<PackageReference Include="Microsoft.DurableTask.Worker.AzureManaged" Version="1.5.0-preview.1" /> -->
15+
1516
<PackageReference Include="Microsoft.DurableTask.Generators" Version="1.0.0-preview.1" OutputItemType="Analyzer" />
1617
</ItemGroup>
1718

1819
<ItemGroup>
20+
<ProjectReference Include="..\..\src\Client\AzureManaged\Client.AzureManaged.csproj" />
21+
<ProjectReference Include="..\..\src\Worker\AzureManaged\Worker.AzureManaged.csproj" />
1922
<ProjectReference Include="..\..\src\ScheduledTasks\ScheduledTasks.csproj" />
2023
</ItemGroup>
2124
</Project>

0 commit comments

Comments
 (0)