-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Breaking] IDataBlock.DataStream was removed. This pattern encouraged async calls behind synchronous property getters, which is a bad practice and can cause deadlocks. Call the async methods directly on the API instead. The obsolete IFileSystemApi.ListFileAsync was removed due to prior deprecation and removal in Kubo 0.26.0. Use IFileSystemApi.ListAsync and MfsApi.StatAsync instead. See ipfs/kubo#7493 (comment). [New] Added missing IFileSystemApi.ListAsync. Doesn't fully replace the removed IFileSystemApi.ListFileAsync, but is a step in the right direction. See ipfs/kubo#7493 (comment).
- Loading branch information
1 parent
593aa1a
commit aabc3a5
Showing
5 changed files
with
80 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,74 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;</TargetFrameworks> | ||
<AssemblyName>IpfsShipyard.Ipfs.Core</AssemblyName> | ||
<RootNamespace>Ipfs</RootNamespace> | ||
<DebugType>portable</DebugType> | ||
|
||
<!-- https://semver.org/spec/v2.0.0.html --> | ||
<Version>0.1.0</Version> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
|
||
<!-- Nuget specs --> | ||
<PackageId>IpfsShipyard.Ipfs.Core</PackageId> | ||
<Authors>IPFS Shipyard, Arlo Godfrey, Richard Schneider</Authors> | ||
<Title>IPFS Core Objects</Title> | ||
<Description> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;</TargetFrameworks> | ||
<AssemblyName>IpfsShipyard.Ipfs.Core</AssemblyName> | ||
<RootNamespace>Ipfs</RootNamespace> | ||
<DebugType>portable</DebugType> | ||
<LangVersion>12.0</LangVersion> | ||
|
||
<!-- https://semver.org/spec/v2.0.0.html --> | ||
<Version>0.2.0</Version> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
|
||
<!-- Nuget specs --> | ||
<PackageId>IpfsShipyard.Ipfs.Core</PackageId> | ||
<Authors>IPFS Shipyard, Arlo Godfrey, Richard Schneider</Authors> | ||
<Title>IPFS Core Objects</Title> | ||
<Description> | ||
Backed by the IPFS Shipyard and developer community. Picking up where Richard Schneider / makaretu left off. | ||
Core objects and interfaces for IPFS. | ||
|
||
The InterPlanetary File System is the permanent web. IPFS enables the creation of completely distributed applications. It is a new hypermedia distribution protocol, addressed by content and identities. It aims to make the web faster, safer, and more open. | ||
</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>ipfs peer-to-peer distributed file-system</PackageTags> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageProjectUrl>https://github.com/ipfs-shipyard/net-ipfs-core</PackageProjectUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
|
||
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB --> | ||
<EmbedUntrackedSources>false</EmbedUntrackedSources> | ||
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link --> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb;$(AllowedOutputExtensionsInPackageBuildOutputFolder)</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Google.Protobuf" Version="3.21.1" /> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" /> | ||
<PackageReference Include="SimpleBase" Version="1.3.1" /> | ||
<PackageReference Include="Grpc.Tools" Version="2.46.3" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Protobuf Include="**/*.proto" /> | ||
<EmbeddedResource Include="**/*.proto" /> | ||
<None Include="icon.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>ipfs peer-to-peer distributed file-system</PackageTags> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageProjectUrl>https://github.com/ipfs-shipyard/net-ipfs-core</PackageProjectUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
|
||
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PackageReleaseNotes> | ||
--- 0.2.0 --- | ||
[Breaking] | ||
IDataBlock.DataStream was removed. This pattern encouraged async calls behind synchronous property getters, which is a bad practice and can cause deadlocks. Call the async methods directly on the API instead. | ||
The obsolete IFileSystemApi.ListFileAsync was removed due to prior deprecation and removal in Kubo 0.26.0. Use IFileSystemApi.ListAsync and MfsApi.StatAsync instead. See https://github.com/ipfs/kubo/issues/7493#issuecomment-2016563729. | ||
|
||
[New] | ||
Added missing IFileSystemApi.ListAsync. Doesn't fully replace the removed IFileSystemApi.ListFileAsync, but is a step in the right direction. See https://github.com/ipfs/kubo/issues/7493#issuecomment-2016563729. | ||
</PackageReleaseNotes> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB --> | ||
<EmbedUntrackedSources>false</EmbedUntrackedSources> | ||
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link --> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb;$(AllowedOutputExtensionsInPackageBuildOutputFolder)</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Google.Protobuf" Version="3.21.1" /> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="PolySharp" Version="1.14.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" /> | ||
<PackageReference Include="SimpleBase" Version="1.3.1" /> | ||
<PackageReference Include="Grpc.Tools" Version="2.46.3" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Protobuf Include="**/*.proto" /> | ||
<EmbeddedResource Include="**/*.proto" /> | ||
<None Include="icon.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |