-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathDatadog.Trace.BenchmarkDotNet.csproj
More file actions
55 lines (49 loc) · 2.46 KB
/
Datadog.Trace.BenchmarkDotNet.csproj
File metadata and controls
55 lines (49 loc) · 2.46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Datadog CI Visibility - BenchmarkDotNet</Title>
<Description>BenchmarkDotNet exporter for Datadog CI Visibility</Description>
<Nullable>enable</Nullable>
<PackageTags>$(PackageTags);BenchmarkDotNet</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- NU* are workaround for Rider bug: https://youtrack.jetbrains.com/issue/RIDER-103207/Cannot-suppress-vulnerable-package-errors -->
<NoWarn>$(NoWarn);NU5100;NU5128;NU1901;NU1902;NU1903;NU1904</NoWarn>
<PackageOutputPath Condition="'$(PackageOutputPath)' == '' ">bin\$(Configuration)\packages</PackageOutputPath>
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
</PropertyGroup>
<!-- For VS testing purposes only, copy all implementation assemblies to the
to test the loading of managed profiler assemblies from disk -->
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)'=='true' and ('$(TargetFrameworkIdentifier)' != '.NETFramework')">
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Datadog.Trace\Datadog.Trace.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\docs\Datadog.Trace.BenchmarkDotNet\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Content Include="home\**\*.*" Pack="true" PackagePath="content\datadog;contentFiles\any\any\datadog">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="home\**\readme.txt" Pack="false">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</Content>
<Content Update="home\**\*.xml" Pack="false">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>