-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathDurableTask.ServiceBus.csproj
More file actions
60 lines (51 loc) · 2.52 KB
/
Copy pathDurableTask.ServiceBus.csproj
File metadata and controls
60 lines (51 loc) · 2.52 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),DurableTask.sln))\tools\DurableTask.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
<PackageId>Microsoft.Azure.DurableTask.ServiceBus</PackageId>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<!-- Version Info -->
<PropertyGroup>
<MajorVersion>4</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>3</PatchVersion>
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
<FileVersion>$(VersionPrefix).0</FileVersion>
<!-- FileVersionRevision is expected to be set by the CI. This is useful for distinguishing between multiple builds of the same version. -->
<!-- Ensure FileVersionRevision fits within valid range (0-65535)-->
<FileVersion Condition="'$(FileVersionRevision)' != ''">$(VersionPrefix).$([MSBuild]::Modulo($(FileVersionRevision), 65536))</FileVersion>
<!-- The assembly version is only the major/minor pair, making it easier to do in-place upgrades -->
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
<!-- This version is used as the nuget package version -->
<Version>$(VersionPrefix)</Version>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<PackageReference Include="ImpromptuInterface" />
<PackageReference Include="Microsoft.Azure.KeyVault.Core" />
<PackageReference Include="Microsoft.Data.Edm" />
<PackageReference Include="Microsoft.Data.OData" />
<PackageReference Include="Microsoft.Data.Services.Client" />
<PackageReference Include="Microsoft.WindowsAzure.ConfigurationManager" />
<PackageReference Include="System.Spatial" />
<PackageReference Include="WindowsAzure.ServiceBus" />
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Azure.Messaging.ServiceBus" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" />
<PackageReference Include="Azure.Storage.Blobs" />
<PackageReference Include="Microsoft.CSharp" />
</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>