Skip to content

Add System.Diagnostics.DiagnosticSource reference for NetStandard 2.0 #3948

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build/Elasticsearch.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@
<iconUrl>https://raw.githubusercontent.com/elastic/elasticsearch-net/master/build/nuget-icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Elasticsearch.Net</description>
<summary>Exposes all the elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.</summary>
<summary>Exposes all the Elasticsearch API endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.</summary>
<releaseNotes>See https://github.com/elastic/elasticsearch-net/releases/tag/$version$</releaseNotes>
<copyright>2014-$year$ Elasticsearch BV</copyright>
<tags>elasticsearch,elastic,search,lucene,nest</tags>
<dependencies>
<group targetFramework=".NETStandard2.0">
<dependency id="System.Buffers" version="[4.5.0,)"/>
<dependency id="System.Diagnostics.DiagnosticSource" version="[4.5.1,)" />
<dependency id="System.Reflection.Emit" version="[4.3.0,)"/>
<dependency id="System.Reflection.Emit.Lightweight" version="[4.3.0,)"/>
</group>
Expand Down
1 change: 0 additions & 1 deletion src/Elasticsearch.Net/Elasticsearch.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit" Version="4.3.0" />
<PackageReference Condition="'$(TargetFramework)' == 'netstandard2.0'" Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />

</ItemGroup>
<ItemGroup>
<Compile Update="ElasticLowLevelClient.*.cs">
Expand Down