IPAddressRange 1.3.0.1

dotnet add package IPAddressRange --version 1.3.0.1
                    
NuGet\Install-Package IPAddressRange -Version 1.3.0.1
                    
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="IPAddressRange" Version="1.3.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IPAddressRange" Version="1.3.0.1" />
                    
Directory.Packages.props
<PackageReference Include="IPAddressRange" />
                    
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 IPAddressRange --version 1.3.0.1
                    
#r "nuget: IPAddressRange, 1.3.0.1"
                    
#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.
#addin nuget:?package=IPAddressRange&version=1.3.0.1
                    
Install IPAddressRange as a Cake Addin
#tool nuget:?package=IPAddressRange&version=1.3.0.1
                    
Install IPAddressRange as a Cake Tool

This library allows you to parse range of IP address string such as "192.168.0.0/24" and "192.168.0.0/255.255.255.0" and "192.168.0.0-192.168.0.255", and can conatins check. This library supports both IPv4 and IPv6.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (15)

Showing the top 15 popular GitHub repositories that depend on IPAddressRange:

Repository Stars
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
ThreeMammals/Ocelot
.NET API Gateway
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)
slskd/slskd
A modern client-server application for the Soulseek file sharing network.
duyanming/Viper
Viper 是一个基于Anno微服务引擎开发的Dashboard示例项目。Anno 底层通讯采用 grpc、thrift。自带服务发现、调用链追踪、Cron 调度、限流、事件总线等等
LeonKou/NetPro
🌈An enhanced version with clean architecture of asp.netcore,efficiently manage startup,Support for netcore3.1/6.0
bitbrute/evillimiter-windows
Tool that limits bandwidth of devices on the same network without access.
andruzzzhka/BeatSaberMultiplayer
DigitalRuby/MailDemon
Smtp server for mass emailing, managing email lists and more. Built on .NET Core. Linux, MAC and Windows compatible.
VahidN/DNTCommon.Web.Core
DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.
ThereGoesMySanity/osuMissAnalyzer
A program to analyze misses in an osu! replay
dukeofharen/httplaceholder
A very flexible cross platform HTTP stub application.
Version Downloads Last updated
1.3.0.1 302 4/1/2015
1.3.0 43 4/1/2015
1.2.1 288 2/19/2015
1.2.0 199 2/5/2015
1.1.0-beta 750 11/4/2014
1.0.6 1,434 3/10/2014
1.0.5 133 12/9/2013
1.0.4 50 12/9/2013
1.0.3 51 12/9/2013
1.0.2 809 5/28/2012
1.0.1 67 5/22/2012
1.0.0 48 5/17/2012

v.1.3.0 - Enhance: support both "hyphen (-)" (0x002D) and "dash (–)" (0x2013) at begin-end format.
     v.1.2.1 - Fix: "Parse()" and "TryParse()" methods throw IndexOutOfRangeException when bit mask length is invalid at CIDR format.
     v.1.2.0 - Enhance: Add "Parse()" and "TryParse()" methods. (Instead, the constructor which has one string argument is obsoleted.)
     v.1.1.0 - Enhance: Add "Contains()" method overload version of IPAddressRange argument.
     v.1.0.6 - Fix Package: Repackage with Release build. (1.0.5 was Debug build)
     v.1.0.5 - Fix: IPv4 CIDR range ".../32" causes crush.
     v.1.0.4 - Enhance: support bit mask range not only CIDR range.
     v.1.0.3 - Fix: Can not parse the address which contains hex string.