forked from Azure/durabletask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDurableTask.AzureServiceFabric.csproj
More file actions
56 lines (49 loc) · 2.45 KB
/
DurableTask.AzureServiceFabric.csproj
File metadata and controls
56 lines (49 loc) · 2.45 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),DurableTask.sln))\tools\DurableTask.props" />
<PropertyGroup>
<TargetFrameworks>net48;net472;net8.0;net10.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>Microsoft.Azure.DurableTask.AzureServiceFabric</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.3.12</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Title>Azure Service Fabric provider extension for the Durable Task Framework.</Title>
<Description>Orchestration message and runtime state is stored in Azure Service Fabric reliable collections.</Description>
<Authors>Microsoft</Authors>
<Platforms>AnyCPU;x64</Platforms>
<NoWarn>$(NoWarn);NU5104</NoWarn>
</PropertyGroup>
<!-- .NET Framework: System.Web reference -->
<ItemGroup Condition="'$(TargetFramework)' == 'net48' OR '$(TargetFramework)' == 'net472'">
<Reference Include="System.Web" />
</ItemGroup>
<!-- .NET Framework: OWIN + Web API -->
<ItemGroup Condition="'$(TargetFramework)' == 'net48' OR '$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.AspNet.WebApi.OwinSelfHost" />
</ItemGroup>
<!-- Modern .NET: ASP.NET Core + Kestrel for Service Fabric -->
<ItemGroup Condition="'$(TargetFramework)' != 'net48' AND '$(TargetFramework)' != 'net472'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
<PackageReference Include="Microsoft.ServiceFabric.AspNetCore.Kestrel" />
<PackageReference Include="Newtonsoft.Json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ImpromptuInterface" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.ServiceFabric.Data" />
<PackageReference Include="Microsoft.ServiceFabric.Services" />
<PackageReference Include="Microsoft.ServiceFabric" />
<PackageReference Include="System.Collections.Immutable" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DurableTask.Core\DurableTask.Core.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
<Content Include="..\..\_manifest\**">
<Pack>true</Pack>
<PackagePath>content/SBOM</PackagePath>
</Content>
</ItemGroup>
</Project>