forked from richardschneider/net-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Arlodotexe/fix/pubsub-fixups
Updated PubSub to align with 0.11.0
- Loading branch information
Showing
4 changed files
with
106 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard14;netstandard2;net45</TargetFrameworks> | ||
<AssemblyName>Ipfs.Http.Client</AssemblyName> | ||
<RootNamespace>Ipfs.Http</RootNamespace> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<DebugType>full</DebugType> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2;</TargetFrameworks> | ||
<AssemblyName>Ipfs.Http.Client</AssemblyName> | ||
<RootNamespace>Ipfs.Http</RootNamespace> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<DebugType>full</DebugType> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<!-- developer build is always 0.42 --> | ||
<AssemblyVersion>0.42</AssemblyVersion> | ||
<Version>0.42</Version> | ||
|
||
<!-- Nuget specs --> | ||
<PackageId>Ipfs.Http.Client</PackageId> | ||
<Authors>Richard Schneider</Authors> | ||
<Title>IPFS HTTP Client</Title> | ||
<Description> Provides .Net client access to the InterPlanetary File System.</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes>https://github.com/richardschneider/net-ipfs-http-client/releases</PackageReleaseNotes> | ||
<Copyright>© 2015-2019 Richard Schneider</Copyright> | ||
<PackageTags>ipfs peer-to-peer distributed file-system</PackageTags> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageProjectUrl>https://github.com/richardschneider/net-ipfs-http-client</PackageProjectUrl> | ||
<PackageIconUrl>https://raw.githubusercontent.com/richardschneider/net-ipfs-core/master/doc/images/ipfs-cs-logo-64x64.png</PackageIconUrl> | ||
</PropertyGroup> | ||
<!-- developer build is always 0.42 --> | ||
<AssemblyVersion>0.42</AssemblyVersion> | ||
<Version>0.42</Version> | ||
|
||
<!-- Nuget specs --> | ||
<PackageId>Ipfs.Http.Client</PackageId> | ||
<Authors>Richard Schneider</Authors> | ||
<Title>IPFS HTTP Client</Title> | ||
<Description> Provides .Net client access to the InterPlanetary File System.</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes>https://github.com/richardschneider/net-ipfs-http-client/releases</PackageReleaseNotes> | ||
<Copyright>© 2015-2019 Richard Schneider</Copyright> | ||
<PackageTags>ipfs peer-to-peer distributed file-system</PackageTags> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageProjectUrl>https://github.com/richardschneider/net-ipfs-http-client</PackageProjectUrl> | ||
<PackageIconUrl>https://raw.githubusercontent.com/richardschneider/net-ipfs-core/master/doc/images/ipfs-cs-logo-64x64.png</PackageIconUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Ipfs.Core" Version="0.55.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'netstandard14'" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'net45'" /> | ||
<PackageReference Include="Multiformats.Base" Version="2.0.2"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Ipfs.Core" Version="0.55.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'netstandard14'" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'net45'" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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