Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Aug 22, 2019
1 parent 327052a commit 9a5fa4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions IpfsCli/IpfsCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<IsShippingPackage>true</IsShippingPackage>
<AllowedReferenceRelatedFileExtensions Condition=" '$(Configuration)' == 'Release' ">
<AllowedReferenceRelatedFileExtensions Condition=" '$(Configuration)' == 'Release' ">
<!-- Prevent default XML and PDB files copied to output in RELEASE. Only *.allowedextension files will be included, which doesn't exist in my case. -->
*.pdb;
*.xml
Expand All @@ -37,7 +37,7 @@

<ItemGroup>
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="Ipfs.Http.Client" Version="0.31.0" />
<PackageReference Include="Ipfs.Http.Client" Version="0.32.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.5" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.9.0" />
Expand Down
2 changes: 1 addition & 1 deletion IpfsServer/IpfsServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ipfs.Core" Version="0.53.1" />
<PackageReference Include="Ipfs.Core" Version="0.54.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="4.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/CoreApi/GenericApiTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public async Task Mars_Info()
var marsAddr = $"/ip6/::1/p2p/{marsId}";
var ipfs = TestFixture.Ipfs;
var swarm = await ipfs.SwarmService;
var mars = await swarm.RegisterPeerAsync(marsAddr);
var mars = swarm.RegisterPeerAddress(marsAddr);

var peer = await ipfs.Generic.IdAsync(marsId);
Assert.AreEqual(mars.Id, peer.Id);
Expand Down

0 comments on commit 9a5fa4d

Please sign in to comment.