Improve Visual Studio Code support (#2015)
This commit is contained in:
parent
58a8d1b568
commit
50b0148c2c
|
|
@ -8,7 +8,8 @@
|
|||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
.vscode/solution-explorer
|
||||
.vscode/
|
||||
.devcontainer/
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
|
||||
<Description>OpenTelemetry .NET API</Description>
|
||||
<RootNamespace>OpenTelemetry</RootNamespace>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net461;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net461</TargetFrameworks>
|
||||
<Description>Console exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);Console;distributed-tracing</PackageTags>
|
||||
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net46;net461;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net46;net461</TargetFrameworks>
|
||||
<Description>In-memory exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags)</PackageTags>
|
||||
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net46;netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;netstandard2.1;net46</TargetFrameworks>
|
||||
<Description>Jaeger exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);Jaeger;distributed-tracing</PackageTags>
|
||||
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net46;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net46</TargetFrameworks>
|
||||
|
||||
<!--
|
||||
There is an integration test for the OTLP exporter that runs a test targeting netcoreapp2.1, netcoreapp3.1 and net5.0.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net46;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net46</TargetFrameworks>
|
||||
<Description>ZPages exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);ZPages;distributed-tracing</PackageTags>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net461;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net461</TargetFrameworks>
|
||||
<Description>Zipkin exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);Zipkin;distributed-tracing</PackageTags>
|
||||
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net46;net461;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net46;net461</TargetFrameworks>
|
||||
<Description>Shared project for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);Shared</PackageTags>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
|
||||
<Description>OpenTracing shim for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);distributed-tracing;OpenTracing</PackageTags>
|
||||
<IsPackable>true</IsPackable>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;net46;net461;netstandard2.0</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.0;net452;net46;net461</TargetFrameworks>
|
||||
<Description>OpenTelemetry .NET SDK</Description>
|
||||
<!--
|
||||
TODO: Disable this exception, and actually do document all public API.
|
||||
|
|
|
|||
Loading…
Reference in New Issue