-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathServiceControl.Transports.ASBS.csproj
More file actions
30 lines (24 loc) · 1.17 KB
/
ServiceControl.Transports.ASBS.csproj
File metadata and controls
30 lines (24 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<!-- Private=false & ExcludeAssets=runtime prevent repeatedly including binary dependencies of ServiceControl.Transports in each transport directory -->
<ProjectReference Include="..\ServiceControl.Transports\ServiceControl.Transports.csproj" Private="false" ExcludeAssets="runtime" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.Monitor.Query.Metrics" />
<PackageReference Include="Azure.ResourceManager.ServiceBus" />
<PackageReference Include="DnsClient" />
<PackageReference Include="NServiceBus.CustomChecks" />
<PackageReference Include="NServiceBus.Transport.AzureServiceBus" />
</ItemGroup>
<ItemGroup>
<None Update="transport.manifest" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Artifact Include="$(OutputPath)" DestinationFolder="@(InstanceName->'$(ArtifactsPath)%(Identity)\Transports\NetStandardAzureServiceBus')" />
</ItemGroup>
</Project>