MonoTorrent 2.0.0-alpha.unstable.rev0147

Suggested Alternatives

MonoTorrent 3.0.1

This is a prerelease version of MonoTorrent.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MonoTorrent --version 2.0.0-alpha.unstable.rev0147
                    
NuGet\Install-Package MonoTorrent -Version 2.0.0-alpha.unstable.rev0147
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MonoTorrent" Version="2.0.0-alpha.unstable.rev0147" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MonoTorrent" Version="2.0.0-alpha.unstable.rev0147" />
                    
Directory.Packages.props
<PackageReference Include="MonoTorrent" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MonoTorrent --version 2.0.0-alpha.unstable.rev0147
                    
#r "nuget: MonoTorrent, 2.0.0-alpha.unstable.rev0147"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MonoTorrent@2.0.0-alpha.unstable.rev0147
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MonoTorrent&version=2.0.0-alpha.unstable.rev0147&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MonoTorrent&version=2.0.0-alpha.unstable.rev0147&prerelease
                    
Install as a Cake Tool

General

  • Some minor renaming of settings in EngineSettings and EngineSettingsBuilder. The old setting still exist but have been marked as [Obsolete] and will be removed in a future pre-release.

  • EngineSettings.CreateContainingDirectory has been added. This setting only affects multi-file torrents. If a multi file torrent is being downloaded and this setting is enabled, a containing directory will automatically be created. If this is set to false, then no containing directly will be created for the files.

  • If a MagnetLink is used to download a torrent you can now use TorrentManager.WaitForMetadataAsync () to wait for the metadata to be available. Metadata downloaded in this way may be automatically persisted in the EngineSettings.MetadataCacheDirectory so it can be reloaded immediately if the MagnetLink is used a second time.

  • There has been a fairly large change in how torrents are added to the engine, or are registered for streaming. The old API required you to create a TorrentManager manually and then register it with a ClientEngine before it could be used. This API has been simplified into:

var engine = new ClientEngine ();

// Download a torrent normally. `TorrentManager.StreamProvider` will be null
// and you will not be able to stream files as they download
TorrentManager downloader = await engine.AddAsync (...);

// Download a torrent in so that individual files can be streamed as they download
// `TorrentManager.StreamProvider` will be non-null and you will be able to stream
// files as they download using `TorrentManager.StreamProvider.CreateStreamAsync`.
TorrentManager streaming = await engine.AddStreamingAsync (...);
```

NOTE: If you download a torrent using a `MagnetLink` the engine will check for, and load, a cached version of the metadata if one is discovered in the cache directory.

* The engine will now automatically save/restore `FastResume` data for individual torrents
and will also save/restore a cache of the DHT table reduce the time it takes to bootstrap
DHT. These behaviours are on by default, but can be disabled using the settings in `EngineSettings`.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on MonoTorrent:

Package Downloads
H.Runners.TorrentRunner

Allows you to download torrents.

BitTorrentStorage

Bit Torrent Storage

GitHub repositories (13)

Showing the top 13 popular GitHub repositories that depend on MonoTorrent:

Repository Stars
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
Prowlarr/Prowlarr
Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps, supporting management of both Torrent Trackers and Usenet Indexers.
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
Readarr/Readarr
Book Manager and Automation (Sonarr for Ebooks)
rogerfar/rdt-client
Real-Debrid Client Proxy
Whisparr/Whisparr
aelassas/wexflow
Workflow Automation Engine
IllusionMods/KKManager
Mod, plugin and card manager for games by Illusion that use BepInEx
immisterio/Lampac
insomniachi/Totoro
A Windows 10/11 only application that is a go to for all things anime.
chyyran/skyinstaller
One-click installer for Trails in the Sky voice acting mods.
Dixin/Blog
Code examples for blog https://weblogs.asp.net/dixin.
Version Downloads Last Updated
3.0.3-alpha.unstable.rev0049 849 9/14/2024
3.0.3-alpha.unstable.rev0024 120 8/28/2024
3.0.3-alpha.unstable.rev0003 126 8/19/2024
3.0.2 18,529 8/4/2024
3.0.1 504 8/2/2024
3.0.0 670 7/28/2024 3.0.0 is deprecated because it has critical bugs.
3.0.0-beta.rev0264 132 7/17/2024 3.0.0-beta.rev0264 is deprecated because it is no longer maintained.
3.0.0-beta.rev0240 158 6/30/2024 3.0.0-beta.rev0240 is deprecated because it is no longer maintained.
3.0.0-beta.rev0159 2,579 2/1/2023 3.0.0-beta.rev0159 is deprecated because it is no longer maintained.
3.0.0-beta.rev0157 238 2/1/2023 3.0.0-beta.rev0157 is deprecated because it is no longer maintained.
3.0.0-beta.rev0106 865 12/23/2022 3.0.0-beta.rev0106 is deprecated because it is no longer maintained.
3.0.0-beta.rev0104 219 12/15/2022 3.0.0-beta.rev0104 is deprecated because it is no longer maintained.
3.0.0-beta.rev0102 490 12/6/2022 3.0.0-beta.rev0102 is deprecated because it is no longer maintained.
3.0.0-beta.rev0068 325 11/12/2022 3.0.0-beta.rev0068 is deprecated because it is no longer maintained.
3.0.0-beta.rev0064 213 11/6/2022 3.0.0-beta.rev0064 is deprecated because it is no longer maintained.
3.0.0-beta.rev0050 201 11/2/2022 3.0.0-beta.rev0050 is deprecated because it is no longer maintained.
3.0.0-beta.rev0034 253 10/18/2022 3.0.0-beta.rev0034 is deprecated because it is no longer maintained.
3.0.0-beta.rev0015 276 9/26/2022 3.0.0-beta.rev0015 is deprecated because it is no longer maintained.
3.0.0-beta.rev0010 343 8/7/2022 3.0.0-beta.rev0010 is deprecated because it is no longer maintained.
3.0.0-beta.rev0000 290 7/10/2022 3.0.0-beta.rev0000 is deprecated because it is no longer maintained.
3.0.0-alpha.unstable.rev0233 226 7/8/2022 3.0.0-alpha.unstable.rev0233 is deprecated because it is no longer maintained.
3.0.0-alpha.unstable.rev0217 239 6/25/2022 3.0.0-alpha.unstable.rev0217 is deprecated because it is no longer maintained.
2.0.7 128,213 12/23/2022
2.0.6 5,646 7/19/2022 2.0.6 is deprecated because it is no longer maintained.
2.0.5 17,434 3/27/2022 2.0.5 is deprecated because it is no longer maintained.
2.0.4 322,032 1/13/2022 2.0.4 is deprecated because it is no longer maintained.
2.0.3 1,653 12/22/2021 2.0.3 is deprecated because it is no longer maintained.
2.0.2 1,472 12/4/2021 2.0.2 is deprecated because it is no longer maintained.
2.0.1 5,568 10/29/2021 2.0.1 is deprecated because it is no longer maintained.
2.0.0 15,808 5/4/2021 2.0.0 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0193 358 4/3/2021 2.0.0-alpha.unstable.rev0193 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0192 319 4/2/2021 2.0.0-alpha.unstable.rev0192 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0167 308 3/18/2021 2.0.0-alpha.unstable.rev0167 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0147 317 3/13/2021 2.0.0-alpha.unstable.rev0147 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0132 340 2/25/2021 2.0.0-alpha.unstable.rev0132 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0123 339 2/20/2021 2.0.0-alpha.unstable.rev0123 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0122 308 2/18/2021 2.0.0-alpha.unstable.rev0122 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0112 344 2/17/2021 2.0.0-alpha.unstable.rev0112 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0107 362 2/10/2021 2.0.0-alpha.unstable.rev0107 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0037 405 12/19/2020 2.0.0-alpha.unstable.rev0037 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0031 389 12/18/2020 2.0.0-alpha.unstable.rev0031 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.rev0017 369 12/10/2020 2.0.0-alpha.unstable.rev0017 is deprecated because it is no longer maintained.
2.0.0-alpha.unstable.build1 422 12/7/2020 2.0.0-alpha.unstable.build1 is deprecated because it is no longer maintained.
1.0.30 1,534 1/7/2022 1.0.30 is deprecated because it is no longer maintained.
1.0.29 11,589 2/16/2021 1.0.29 is deprecated because it is no longer maintained.
1.0.28 7,759 11/25/2020 1.0.28 is deprecated because it is no longer maintained.
1.0.27 1,708 11/24/2020 1.0.27 is deprecated because it is no longer maintained.
1.0.26 1,532 11/24/2020 1.0.26 is deprecated because it is no longer maintained.
1.0.25 1,663 11/14/2020 1.0.25 is deprecated because it is no longer maintained.
1.0.24 2,649 8/12/2020 1.0.24 is deprecated because it is no longer maintained.
1.0.23 2,399 7/6/2020 1.0.23 is deprecated because it is no longer maintained.
1.0.22 5,506 5/26/2020 1.0.22 is deprecated because it is no longer maintained.
1.0.21 3,141 4/24/2020 1.0.21 is deprecated because it is no longer maintained.
1.0.20 2,074 4/13/2020 1.0.20 is deprecated because it is no longer maintained.
1.0.19 29,350 3/27/2020 1.0.19 is deprecated because it is no longer maintained.
1.0.18 2,580 3/16/2020 1.0.18 is deprecated because it is no longer maintained.
1.0.17 1,648 3/9/2020 1.0.17 is deprecated because it is no longer maintained.
1.0.16 1,697 3/3/2020 1.0.16 is deprecated because it is no longer maintained.
1.0.16-alpha 1,437 2/5/2020 1.0.16-alpha is deprecated because it is no longer maintained.
1.0.15 1,745 2/2/2020 1.0.15 is deprecated because it is no longer maintained.
1.0.14 1,586 1/30/2020 1.0.14 is deprecated because it is no longer maintained.
1.0.13 1,698 1/30/2020 1.0.13 is deprecated because it is no longer maintained.
1.0.12 1,732 1/16/2020 1.0.12 is deprecated because it is no longer maintained.
1.0.11 4,264 1/8/2020 1.0.11 is deprecated because it is no longer maintained.
1.0.10 2,227 12/11/2019 1.0.10 is deprecated because it is no longer maintained.
1.0.9 2,029 12/2/2019 1.0.9 is deprecated because it is no longer maintained.
1.0.9-beta 1,351 11/28/2019 1.0.9-beta is deprecated because it is no longer maintained.
1.0.8 1,708 11/19/2019 1.0.8 is deprecated because it is no longer maintained.
1.0.7 1,732 11/2/2019 1.0.7 is deprecated because it is no longer maintained.
1.0.6 1,646 11/1/2019 1.0.6 is deprecated because it is no longer maintained.
1.0.5 1,605 11/1/2019 1.0.5 is deprecated because it is no longer maintained.
1.0.4 1,661 10/30/2019 1.0.4 is deprecated because it is no longer maintained.
1.0.3 1,765 10/16/2019 1.0.3 is deprecated because it is no longer maintained.
1.0.2 1,724 9/27/2019 1.0.2 is deprecated because it is no longer maintained.
1.0.1 1,739 9/6/2019 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,882 9/6/2019 1.0.0 is deprecated because it is no longer maintained.
0.99.136-beta 1,433 9/6/2019 0.99.136-beta is deprecated because it is no longer maintained.
0.99.134-beta 1,393 9/5/2019 0.99.134-beta is deprecated because it is no longer maintained.
0.99.119-alpha 1,337 9/4/2019 0.99.119-alpha is deprecated because it is no longer maintained.
0.9.0 11,149 6/10/2011 0.9.0 is deprecated because it is no longer maintained.