SeriesIDParserCore 7.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package SeriesIDParserCore --version 7.0.1
NuGet\Install-Package SeriesIDParserCore -Version 7.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="SeriesIDParserCore" Version="7.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SeriesIDParserCore --version 7.0.1
#r "nuget: SeriesIDParserCore, 7.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.
// Install SeriesIDParserCore as a Cake Addin
#addin nuget:?package=SeriesIDParserCore&version=7.0.1

// Install SeriesIDParserCore as a Cake Tool
#tool nuget:?package=SeriesIDParserCore&version=7.0.1

!! Now supporting .Net Core !!

Parses series or movie strings to detailed object.

Input: "Knight.Rider.S01E01E02.Die.grosse.Duerre.German.DVDRip.AAC.XviD-c0nFuSed.mkv"
The output would be a object like that:

SeriesID (object)
|-> FullTitle -> Knight.Rider.S01E07.Die.grosse.Duerre (string)
|-> SeriesTitle -> Knight.Rider (string)
|-> EpisodeTitle-> Die.grosse.Duerre (string)
|-> State -> OK_SUCCESS (Flagable Enum)
|-> IsSeries -> true (bool)
|-> IsMultiEpisode -> true (bool)
|-> OriginalString-> Knight.Rider.S01E07.Die.grosse.Duerre.German.DVDRip.XviD-c0nFuSed.mkv (string)
|-> ParsedString -> Knight.Rider.S01E07.Die.grosse.Duerre.DVDRip.German.mkv (string)
|-> RemovedTokens -> {German, DVDRip, XviD} (string-list)
|-> Season -> 1 (int)
|-> DetectedOldSpacingChar -> '.' (char)
|-> ProcessingDuration -> (TimeSpan)
|-> Episodes -> 1, 2 (int list)
|-> IDString -> S01E07 (string)
|-> Resolutions -> {SD_Any} (enum list)
|-> Year -> 1982 (int)
|-> VideoCodec -> XviD (string)
|-> AudioCodec -> AAC (string)
|-> ReleaseGroup -> c0nFuSed (string)

Check "Project Site" link on the left for the Gitlab project site
Icon designed by Madebyoliver from Flaticon

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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework 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. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 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.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0 946 1/3/2017
8.2.0 927 12/24/2016
7.0.1 962 10/16/2016
7.0.0 901 10/16/2016

# Changelog #

##7.0.0 (2016-10-16)##
###New###
- !! Now supporting .Net Core !!
- SeriesIDParserCore for .Net Core implementation
- Removed unused '[Serializable]' attribute from ParserSettings
- Removed unused app.config entries
- Removed 'Episode' (single)
- Added Console Demo for Core version
- Unit tests updated

###Fix###
-


---


##6.1.0 (2016-10-05)##
###New###
- Added ParserSettings Property ReleaseGroupSeperator
- Added SeriesID Property ReleaseGroup
- Added SeriesID Property Episodes
- Added SeriesID Property AudioCodec
- Added SeriesID Property VideoCodec
- Added partial class SeriesID-Properties
- Added class Helpers
- Added missing license notes in class files
- Change in *.md format
- Support for multi episode strings added (see below)
- Property Episode is now obsolete and will be replaced with Episodes (int list)
- Code refactoring
- Useless ctor removed
- Most properties now return an empty value instead of null on error
- Removed some ref keywords

###Fix###
- Code organization