-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathDurableTask.csproj
More file actions
48 lines (41 loc) · 1.83 KB
/
DurableTask.csproj
File metadata and controls
48 lines (41 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!-- Package info -->
<PropertyGroup>
<Company>Microsoft Corporation</Company>
<Product>Durable Task SDK</Product>
<PackageId>Microsoft.DurableTask</PackageId>
<Title>Durable Task .NET SDK</Title>
<Description>.NET SDK for the Durable Task Framework.</Description>
<PackageTags>Microsoft Durable Task Orchestration Workflow Activity Reliable</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<!-- Version info -->
<PropertyGroup>
<VersionPrefix>0.2.0</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.*" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="Grpc.AspNetCore.Server" Version="2.38.0" />
<PackageReference Include="Microsoft.Azure.DurableTask.Core" Version="2.7.0" />
<PackageReference Include="Microsoft.DurableTask.Sidecar.Protobuf" Version="0.2.0-alpha" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DurableTask.Generators\DurableTask.Generators.csproj" />
</ItemGroup>
</Project>