Unverified Commit 62067838 authored by Lemon's avatar Lemon Committed by GitHub

Support .NET Framework 4.6.1 (#60)

* support .NET Framework 461

* change ":" to "-" in CarrierItem
parent 12066739
...@@ -64,7 +64,7 @@ namespace SkyWalking.Context ...@@ -64,7 +64,7 @@ namespace SkyWalking.Context
} }
else else
{ {
_headKey = $"{AgentConfig.Namespace}:{headKey}"; _headKey = $"{AgentConfig.Namespace}-{headKey}";
} }
_headValue = headValue; _headValue = headValue;
_next = next; _next = next;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>SkyWalking Core abstractions and interfaces for apm agent.</Description> <Description>SkyWalking Core abstractions and interfaces for apm agent.</Description>
<AssemblyTitle>SkyWalking.Abstractions</AssemblyTitle> <AssemblyTitle>SkyWalking.Abstractions</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<AssemblyName>SkyWalking.Abstractions</AssemblyName> <AssemblyName>SkyWalking.Abstractions</AssemblyName>
<PackageId>SkyWalking.Abstractions</PackageId> <PackageId>SkyWalking.Abstractions</PackageId>
<PackageTags>SkyWalking;APM</PackageTags> <PackageTags>SkyWalking;APM</PackageTags>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>SkyWalking core components.</Description> <Description>SkyWalking core components.</Description>
<AssemblyTitle>SkyWalking.Core</AssemblyTitle> <AssemblyTitle>SkyWalking.Core</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<AssemblyName>SkyWalking.Core</AssemblyName> <AssemblyName>SkyWalking.Core</AssemblyName>
<PackageId>SkyWalking.Core</PackageId> <PackageId>SkyWalking.Core</PackageId>
<PackageTags>SkyWalking;APM</PackageTags> <PackageTags>SkyWalking;APM</PackageTags>
...@@ -18,5 +18,7 @@ ...@@ -18,5 +18,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.4.1" /> <PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.4.1" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>
\ No newline at end of file
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>SkyWalking trace protocol.</Description> <Description>SkyWalking trace protocol.</Description>
<AssemblyTitle>SkyWalking.NetworkProtocol.Trace</AssemblyTitle> <AssemblyTitle>SkyWalking.NetworkProtocol.Trace</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<AssemblyName>SkyWalking.NetworkProtocol.Trace</AssemblyName> <AssemblyName>SkyWalking.NetworkProtocol.Trace</AssemblyName>
<PackageId>SkyWalking.NetworkProtocol.Trace</PackageId> <PackageId>SkyWalking.NetworkProtocol.Trace</PackageId>
<PackageTags>SkyWalking</PackageTags> <PackageTags>SkyWalking</PackageTags>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>SkyWalking gRPC protocol and generated codes.</Description> <Description>SkyWalking gRPC protocol and generated codes.</Description>
<AssemblyTitle>SkyWalking.NetworkProtocol</AssemblyTitle> <AssemblyTitle>SkyWalking.NetworkProtocol</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<AssemblyName>SkyWalking.NetworkProtocol</AssemblyName> <AssemblyName>SkyWalking.NetworkProtocol</AssemblyName>
<PackageId>SkyWalking.NetworkProtocol</PackageId> <PackageId>SkyWalking.NetworkProtocol</PackageId>
<PackageTags>SkyWalking</PackageTags> <PackageTags>SkyWalking</PackageTags>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment