-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathWorker.Extensions.DurableTask.csproj
More file actions
62 lines (56 loc) · 2.92 KB
/
Worker.Extensions.DurableTask.csproj
File metadata and controls
62 lines (56 loc) · 2.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<!-- Core compiler settings -->
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DebugType>embedded</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- Assembly/NuGet package settings & metadata -->
<PropertyGroup>
<AssemblyName>Microsoft.Azure.Functions.Worker.Extensions.DurableTask</AssemblyName>
<RootNamespace>Microsoft.Azure.Functions.Worker.Extensions.DurableTask</RootNamespace>
<Description>Durable Task extension for .NET isolated functions</Description>
<Authors>Microsoft</Authors>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/Azure/azure-functions-durable-extension</PackageProjectUrl>
<RepositoryUrl>https://github.com/Azure/azure-functions-durable-extension/</RepositoryUrl>
<PackageReleaseNotes>https://github.com/Azure/azure-functions-durable-extension/releases/</PackageReleaseNotes>
<PackageTags>Microsoft Azure Durable Orchestration Workflow Functions</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\sign.snk</AssemblyOriginatorKeyFile>
<!-- Version information -->
<VersionPrefix>1.16.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
<!-- FileVersionRevision is expected to be set by the CI. -->
<FileVersion Condition="'$(FileVersionRevision)' != ''">$(VersionPrefix).$(FileVersionRevision)</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Abstractions" />
<PackageReference Include="Microsoft.DurableTask.Client.Grpc" />
<PackageReference Include="Microsoft.DurableTask.Worker.Grpc" />
<PackageReference Include="Grpc.Net.Client" />
<PackageReference Include="Microsoft.DurableTask.Analyzers" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
<PackageReference Include="Microsoft.Bcl.Memory" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>
<!-- Embed the SBOM manifest, which is generated as part of the "official" build -->
<ItemGroup Condition="'$(Configuration)'=='Release'">
<Content Include="..\..\_manifest\**">
<Pack>true</Pack>
<PackagePath>content/SBOM</PackagePath>
</Content>
</ItemGroup>
</Project>