27 lines
852 B
XML
27 lines
852 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. -->
|
|
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
|
|
<Description>In-memory exporter for OpenTelemetry .NET</Description>
|
|
<PackageTags>$(PackageTags)</PackageTags>
|
|
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
|
|
|
<!-- this is temporary. will remove in future PR. -->
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn),1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(RepoRoot)\src\OpenTelemetry\OpenTelemetry.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="$(RepoRoot)\src\OpenTelemetry.Api\Internal\Guard.cs" Link="Includes\Guard.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|