forked from SkyAPM/SkyAPM-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkyApm.Core.csproj
More file actions
28 lines (25 loc) · 1.21 KB
/
Copy pathSkyApm.Core.csproj
File metadata and controls
28 lines (25 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>$(Product) core components.</Description>
<AssemblyTitle>$(PackagePrefix).Core</AssemblyTitle>
<AssemblyName>$(PackagePrefix).Core</AssemblyName>
<PackageId>$(PackagePrefix).Core</PackageId>
<PackageTags>SkyWalking;APM</PackageTags>
<PackageReleaseNotes>
</PackageReleaseNotes>
<RootNamespace>SkyApm</RootNamespace>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<DefineConstants Condition="'$(TargetFramework)' == 'netcoreapp2.1'">$(DefineConstants);SPAN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspectCore.Extensions.Reflection" Version="2.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SkyApm.Abstractions\SkyApm.Abstractions.csproj" />
</ItemGroup>
</Project>