-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathScheduleWebApp.csproj
More file actions
23 lines (20 loc) · 1.02 KB
/
ScheduleWebApp.csproj
File metadata and controls
23 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.21.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.80.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.7" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DurableTask.Client.AzureManaged" Version="1.24.1" />
<PackageReference Include="Microsoft.DurableTask.Worker.AzureManaged" Version="1.24.1" />
<PackageReference Include="Microsoft.DurableTask.ScheduledTasks" Version="1.21.0-preview.1" />
</ItemGroup>
</Project>