IOTA, Distributed ledgers and C#
  • Abstract
  • Introduction
  • What is IOTA?
  • Development
    • Install Tangle-net NuGet
    • Initialize IOTA repository
    • Node control
    • Basics
      • Seeds and addresses
      • Sending transactions
    • ZMQ
  • Resources and further reading
  • Contact
Powered by GitBook
On this page

Was this helpful?

  1. Development

Install Tangle-net NuGet

PreviousDevelopmentNextInitialize IOTA repository

Last updated 5 years ago

Was this helpful?

To begin, we first need to add the NuGet to our project.

1# We right click the project and then click Managet NuGet Packages for Solution...

2# We go to the Browse tab, write Tangle.net into the search box, find the correct one and then click Install. Tangle.Net is compatible with .NET Standard 2.0 and .NET Framework 4.6.1.

3# Once we have installed the NuGet, we should be able see it within the Installed tab.

Now that we have added the NuGet to our project, we can start writing our first lines of code.

tangle-net