You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Richard Schneider edited this page Oct 21, 2015
·
14 revisions
We use AppVeyor for continuous integration. Whenever a commit is made to the Github repo the CI is kicked off. Each build produces an artifact the Ipfs.Core package containing:
Ipfs.Core.dll - the assembly
Ipfs.Core.pdb - debugging info
Ipfs.Core.xml - programmer level documentation on the assembly
The status of the latest build is found on the project readme. Clicking on the link will bring up the AppVeyor project lastest build details.
A NuGet feed for all IPFS.Core builds is at https://ci.appveyor.com/nuget/net-ipfs-core-wursx0qon9ff. These builds are beta and are considered prerelease by NuGet.
nuget list -source https://ci.appveyor.com/nuget/net-ipfs-core-wursx0qon9ff
-prerelease -allversions
All the .Net IPFS packages can be found https://ci.appveyor.com/nuget/richardschneider-ammjr9s00uvm.
Releases
Making a release is a as simple as creating a git tag it the correct format.
git tag -a v2.1.0 -m "Release v2.1.0"
git push --tags origin