Skip to content

Commit

Permalink
chore: newtonsoft upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
bcuff committed Sep 27, 2022
1 parent 40b500e commit 1c71ad1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net481</TargetFrameworks>
<AssemblyName>ElasticSearch.Net.Aws.IntegrationTests</AssemblyName>
<PackageId>ElasticSearch.Net.Aws.IntegrationTests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net481</TargetFrameworks>
<AssemblyName>ElasticSearch.Net.Aws.Tests</AssemblyName>
<PackageId>ElasticSearch.Net.Aws.Tests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ namespace Tests
[TestFixture]
public class SigningHttpMessageHandlerTests
{
#if NETCOREAPP
private class TestHandler : HttpClientHandler
{
public bool Disposed;
Expand All @@ -30,7 +31,6 @@ protected override void Dispose(bool disposing)
}
}

#if NETCOREAPP
[Test]
public void TestDispose()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net481</TargetFrameworks>
<AssemblyName>Elasticsearch.Net.Aws</AssemblyName>
<PackageId>Elasticsearch.Net.Aws</PackageId>
<Version>7.2.1</Version>
<Version>7.2.2</Version>
<Authors>Brandon Cuff</Authors>
<Description>Enables request signing necessary for using the AWS Elasticsearch service.</Description>
<Copyright>Copyright 2015</Copyright>
<PackageLicenseUrl>https://raw.githubusercontent.com/bcuff/elasticsearch-net-aws/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/bcuff/elasticsearch-net-aws</PackageProjectUrl>
<PackageReleaseNotes>Fixed stack overflow in Dispose method.</PackageReleaseNotes>
<PackageReleaseNotes>Newtonsoft fix &amp; framework upgrade.</PackageReleaseNotes>
<PackageTags>elasticsearch elastic search aws amazon</PackageTags>
<RepositoryUrl>https://github.com/bcuff/elasticsearch-net-aws</RepositoryUrl>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<dependencies>
<group>
<dependency id="Elasticsearch.Net" version="2.4.6" />
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="Newtonsoft.Json" version="13.0.1" />
</group>
<group targetFramework=".NETStandard,Version=1.3">
<dependency id="NETStandard.Library" version="1.6.0" />
Expand Down

0 comments on commit 1c71ad1

Please sign in to comment.