forked from SkyAPM/SkyAPM-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkyApm.Diagnostics.CAP.csproj
More file actions
32 lines (27 loc) · 1.41 KB
/
Copy pathSkyApm.Diagnostics.CAP.csproj
File metadata and controls
32 lines (27 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>$(PackagePrefix).Diagnostics.CAP notifies of CAP messages.</Description>
<AssemblyTitle>$(PackagePrefix).Diagnostics.CAP</AssemblyTitle>
<AssemblyName>$(PackagePrefix).Diagnostics.CAP</AssemblyName>
<PackageId>$(PackagePrefix).Diagnostics.CAP</PackageId>
<PackageTags>SkyWalking;APM;CAP</PackageTags>
<RootNamespace>SkyApm.Diagnostics.CAP</RootNamespace>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="DotNetCore.CAP" Version="3.1.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="DotNetCore.CAP" Version="5.2.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="DotNetCore.CAP" Version="6.2.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="DotNetCore.CAP" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SkyApm.Abstractions\SkyApm.Abstractions.csproj" />
<ProjectReference Include="..\SkyApm.Core\SkyApm.Core.csproj" />
<ProjectReference Include="..\SkyApm.Utilities.DependencyInjection\SkyApm.Utilities.DependencyInjection.csproj" />
</ItemGroup>
</Project>