diff --git a/eng/Build.props b/eng/Build.props
index 6d9cf2fb31..cddebf6df8 100644
--- a/eng/Build.props
+++ b/eng/Build.props
@@ -18,6 +18,8 @@
-->
+
+
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 142f929ca0..3165fcbb9a 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,34 +1,27 @@
-
-
- https://github.com/dotnet/source-build-externals
- 4b86d4b30ec51a3d8953a6b87e4a795197fa987f
-
-
-
https://github.com/dotnet/source-build-reference-packages
d114eecff6c3149a55cb643fba6c4e7580b9f0b7
-
+
https://github.com/dotnet/arcade
- c4a85adbff520f62bfade7a6132f471506c3d35a
+ 7f6d9796cc7f594772f798358dbdd8c69b6a97af
-
+
https://github.com/dotnet/arcade
- c4a85adbff520f62bfade7a6132f471506c3d35a
+ 7f6d9796cc7f594772f798358dbdd8c69b6a97af
-
+
https://github.com/dotnet/sdk
- 0338c0af8beed93e2e2c277b3119fb340c9b3f57
+ 1ea0e6909822242bc0bba406539bd2a7c4a1d56e
-
+
https://github.com/dotnet/sourcelink
- 955e79b0b955a9f57078b2399a782fcde44a9261
+ 5585cd4cd5779bc7efdf3e2f19ed0bef50b15f7b
diff --git a/eng/Versions.props b/eng/Versions.props
index e05ee74021..7306032699 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -11,11 +11,11 @@
1.0.0-beta.20113.5
- 8.0.0-beta.23120.1
+ 8.0.0-beta.23153.1
6.0.0-preview.6.21352.12
6.0.0-preview.6.21352.12
- 8.0.100-preview.2.23123.4
+ 8.0.100-preview.3.23154.6
diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh
index ffaa88eb0f..ff113f7335 100755
--- a/eng/common/cross/build-rootfs.sh
+++ b/eng/common/cross/build-rootfs.sh
@@ -55,7 +55,7 @@ __AlpinePackages+=" gettext-dev"
__AlpinePackages+=" icu-dev"
__AlpinePackages+=" libunwind-dev"
__AlpinePackages+=" lttng-ust-dev"
-__AlpinePackages+=" compiler-rt-static"
+__AlpinePackages+=" compiler-rt"
__AlpinePackages+=" numactl-dev"
# runtime libraries' dependencies
@@ -150,7 +150,6 @@ while :; do
__BuildArch=riscv64
__AlpineArch=riscv64
__AlpinePackages="${__AlpinePackages// lldb-dev/}"
- __AlpinePackages="${__AlpinePackages// compiler-rt-static/}"
__QEMUArch=riscv64
__UbuntuArch=riscv64
__UbuntuRepo="http://deb.debian.org/debian-ports"
@@ -160,10 +159,6 @@ while :; do
if [[ -e "/usr/share/keyrings/debian-ports-archive-keyring.gpg" ]]; then
__Keyring="--keyring /usr/share/keyrings/debian-ports-archive-keyring.gpg --include=debian-ports-archive-keyring"
fi
-
- if [[ "$version" != "edge" && ( -z "$__AlpineVersion" || -z "$__AlpineMajorVersion" )]]; then
- __AlpineVersion=edge # minimum version with APKINDEX.tar.gz (packages archive)
- fi
;;
ppc64le)
__BuildArch=ppc64le
@@ -175,10 +170,6 @@ while :; do
__UbuntuPackages="${__UbuntuPackages// libomp-dev/}"
__UbuntuPackages="${__UbuntuPackages// libomp5/}"
unset __LLDB_Package
-
- if [[ "$version" != "edge" && ( -z "$__AlpineVersion" || -z "$__AlpineMajorVersion" )]]; then
- __AlpineVersion=3.15 # minimum version that supports compiler-rt
- fi
;;
s390x)
__BuildArch=s390x
@@ -190,10 +181,6 @@ while :; do
__UbuntuPackages="${__UbuntuPackages// libomp-dev/}"
__UbuntuPackages="${__UbuntuPackages// libomp5/}"
unset __LLDB_Package
-
- if [[ "$version" != "edge" && ( -z "$__AlpineVersion" || -z "$__AlpineMajorVersion" )]]; then
- __AlpineVersion=3.15 # minimum version that supports compiler-rt
- fi
;;
x64)
__BuildArch=x64
@@ -206,6 +193,7 @@ while :; do
x86)
__BuildArch=x86
__UbuntuArch=i386
+ __AlpineArch=x86
__UbuntuRepo="http://archive.ubuntu.com/ubuntu/"
;;
lldb*)
@@ -260,25 +248,40 @@ while :; do
;;
jessie) # Debian 8
__CodeName=jessie
- __UbuntuRepo="http://ftp.debian.org/debian/"
+
+ if [[ -z "$__UbuntuRepo" ]]; then
+ __UbuntuRepo="http://ftp.debian.org/debian/"
+ fi
;;
stretch) # Debian 9
__CodeName=stretch
- __UbuntuRepo="http://ftp.debian.org/debian/"
__LLDB_Package="liblldb-6.0-dev"
+
+ if [[ -z "$__UbuntuRepo" ]]; then
+ __UbuntuRepo="http://ftp.debian.org/debian/"
+ fi
;;
buster) # Debian 10
__CodeName=buster
- __UbuntuRepo="http://ftp.debian.org/debian/"
__LLDB_Package="liblldb-6.0-dev"
+
+ if [[ -z "$__UbuntuRepo" ]]; then
+ __UbuntuRepo="http://ftp.debian.org/debian/"
+ fi
;;
bullseye) # Debian 11
__CodeName=bullseye
- __UbuntuRepo="http://ftp.debian.org/debian/"
+
+ if [[ -z "$__UbuntuRepo" ]]; then
+ __UbuntuRepo="http://ftp.debian.org/debian/"
+ fi
;;
sid) # Debian sid
__CodeName=sid
- __UbuntuRepo="http://ftp.debian.org/debian/"
+
+ if [[ -z "$__UbuntuRepo" ]]; then
+ __UbuntuRepo="http://ftp.debian.org/debian/"
+ fi
;;
tizen)
__CodeName=
@@ -296,29 +299,8 @@ while :; do
parts=(${version//./ })
__AlpineMajorVersion="${parts[0]}"
__AlpineMinoVersion="${parts[1]}"
-
- if [[ -z "$__AlpineVersion" ]]; then
- __AlpineVersion="$__AlpineMajorVersion.$__AlpineMinoVersion"
- fi
+ __AlpineVersion="$__AlpineMajorVersion.$__AlpineMinoVersion"
fi
-
- case "$__AlpineVersion" in
- 3.14) __AlpinePackages+=" llvm11-libs" ;;
- 3.15) __AlpinePackages+=" llvm12-libs" ;;
- 3.16) __AlpinePackages+=" llvm13-libs" ;;
- 3.17) __AlpinePackages+=" llvm15-libs" ;;
- edge) __AlpineLlvmLibsLookup=1 ;;
- *)
- if [[ "$__AlpineArch" =~ "s390x|ppc64le" ]]; then
- __AlpineVersion=3.15 # minimum version that supports compiler-rt
- __AlpinePackages+=" llvm12-libs"
- elif [[ "$__AlpineArch" == "riscv64" ]]; then
- __AlpineLlvmLibsLookup=1
- __AlpineVersion=edge # minimum version with APKINDEX.tar.gz (packages archive)
- else
- __AlpineVersion=3.13 # 3.13 to maximize compatibility
- fi
- esac
;;
freebsd12)
__CodeName=freebsd
@@ -361,10 +343,41 @@ while :; do
shift
done
+case "$__AlpineVersion" in
+ 3.14) __AlpinePackages+=" llvm11-libs" ;;
+ 3.15) __AlpinePackages+=" llvm12-libs" ;;
+ 3.16) __AlpinePackages+=" llvm13-libs" ;;
+ 3.17) __AlpinePackages+=" llvm15-libs" ;;
+ edge) __AlpineLlvmLibsLookup=1 ;;
+ *)
+ if [[ "$__AlpineArch" =~ s390x|ppc64le ]]; then
+ echo boo
+ __AlpineVersion=3.15 # minimum version that supports lldb-dev
+ __AlpinePackages+=" llvm12-libs"
+ elif [[ "$__AlpineArch" == "x86" ]]; then
+ __AlpineVersion=3.17 # minimum version that supports lldb-dev
+ __AlpinePackages+=" llvm15-libs"
+ elif [[ "$__AlpineArch" == "riscv64" ]]; then
+ __AlpineLlvmLibsLookup=1
+ __AlpineVersion=edge # minimum version with APKINDEX.tar.gz (packages archive)
+ else
+ __AlpineVersion=3.13 # 3.13 to maximize compatibility
+ __AlpinePackages+=" llvm10-libs"
+
+ if [[ "$__AlpineArch" == "armv7" ]]; then
+ __AlpinePackages="${__AlpinePackages//numactl-dev/}"
+ fi
+ fi
+esac
+
+if [[ "$__AlpineVersion" =~ 3\.1[345] ]]; then
+ # compiler-rt--static was merged in compiler-rt package in alpine 3.16
+ # for older versions, we need compiler-rt--static, so replace the name
+ __AlpinePackages="${__AlpinePackages/compiler-rt/compiler-rt-static}"
+fi
+
if [[ "$__BuildArch" == "armel" ]]; then
__LLDB_Package="lldb-3.5-dev"
-elif [[ "$__BuildArch" == "arm" && "$__AlpineVersion" == "3.13" ]]; then
- __AlpinePackages="${__AlpinePackages//numactl-dev/}"
fi
__UbuntuPackages+=" ${__LLDB_Package:-}"
@@ -407,26 +420,27 @@ if [[ "$__CodeName" == "alpine" ]]; then
version="v$__AlpineVersion"
fi
+ # initialize DB
"$__ApkToolsDir/apk.static" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
- -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" --initdb \
- add $__AlpinePackages
+ -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" --initdb add
if [[ "$__AlpineLlvmLibsLookup" == 1 ]]; then
- "$__ApkToolsDir/apk.static" \
+ __AlpinePackages+=" $("$__ApkToolsDir/apk.static" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
-U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" \
- search 'llvm*-libs' | sort | tail -1 | while IFS=- read name rest; do
- "$__ApkToolsDir/apk.static" \
- -X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
- -X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
- -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" \
- add "$name-libs"
- done
+ search 'llvm*-libs' | sort | tail -1 | sed 's/-[^-]*//2g')"
fi
+ # install all packages in one go
+ "$__ApkToolsDir/apk.static" \
+ -X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
+ -X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
+ -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" \
+ add $__AlpinePackages
+
rm -r "$__ApkToolsDir"
elif [[ "$__CodeName" == "freebsd" ]]; then
mkdir -p "$__RootfsDir"/usr/local/etc
diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml
index 61914a1fbc..b214a31db2 100644
--- a/eng/common/templates/job/job.yml
+++ b/eng/common/templates/job/job.yml
@@ -101,7 +101,7 @@ jobs:
# handle key-value variable syntax.
# example:
# - [key]: [value]
- - ${{ if and(eq(variable.name, ''), eq(variable.group, '')) }}:
+ - ${{ if and(eq(variable.name, ''), eq(variable.group, ''), eq(variable.template, '')) }}:
- ${{ each pair in variable }}:
- name: ${{ pair.key }}
value: ${{ pair.value }}
diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml
index 71b66aeb8a..b98202aa02 100644
--- a/eng/common/templates/job/source-index-stage1.yml
+++ b/eng/common/templates/job/source-index-stage1.yml
@@ -1,6 +1,6 @@
parameters:
runAsPublic: false
- sourceIndexPackageVersion: 1.0.1-20221220.2
+ sourceIndexPackageVersion: 1.0.1-20230228.2
sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json
sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci"
preSteps: []
diff --git a/global.json b/global.json
index 991af0384f..0ff945b63d 100644
--- a/global.json
+++ b/global.json
@@ -1,8 +1,8 @@
{
"tools": {
- "dotnet": "8.0.100-alpha.1.23061.8"
+ "dotnet": "8.0.100-preview.1.23115.2"
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23120.1"
+ "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23153.1"
}
}
diff --git a/src/referencePackages/src/humanizer.core/2.2.0/Humanizer.Core.2.2.0.csproj b/src/referencePackages/src/humanizer.core/2.2.0/Humanizer.Core.2.2.0.csproj
new file mode 100644
index 0000000000..4639838ddf
--- /dev/null
+++ b/src/referencePackages/src/humanizer.core/2.2.0/Humanizer.Core.2.2.0.csproj
@@ -0,0 +1,27 @@
+
+
+
+
+ netstandard1.0
+ $(ArtifactsBinDir)humanizer.core/2.2.0/humanizer.core.nuspec
+
+
+
+ $(ArtifactsBinDir)humanizer.core/2.2.0/ref/
+ $(ArtifactsObjDir)humanizer.core/2.2.0
+
+
+
+ $(ArtifactsBinDir)humanizer.core/2.2.0/lib/
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/referencePackages/src/humanizer.core/2.2.0/humanizer.core.nuspec b/src/referencePackages/src/humanizer.core/2.2.0/humanizer.core.nuspec
new file mode 100755
index 0000000000..99d9dfcc9a
--- /dev/null
+++ b/src/referencePackages/src/humanizer.core/2.2.0/humanizer.core.nuspec
@@ -0,0 +1,23 @@
+
+
+
+ Humanizer.Core
+ 2.2.0
+ Humanizer Locale (en)
+ Mehdi Khalili, Oren Novotny
+ Mehdi Khalili, onovotny
+ false
+ https://raw.githubusercontent.com/Humanizr/Humanizer/master/LICENSE
+ https://github.com/Humanizr/Humanizer
+ https://raw.github.com/Humanizr/Humanizer/master/logo.png
+ Humanizer core package that contains the library and the neutral language (English) resources
+ Copyright 2012-2016
+ en
+
+
+
+
+
+
+
+
diff --git a/src/referencePackages/src/humanizer.core/2.2.0/lib/netstandard1.0/Humanizer.cs b/src/referencePackages/src/humanizer.core/2.2.0/lib/netstandard1.0/Humanizer.cs
new file mode 100644
index 0000000000..11a08ba45f
--- /dev/null
+++ b/src/referencePackages/src/humanizer.core/2.2.0/lib/netstandard1.0/Humanizer.cs
@@ -0,0 +1,1222 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+// ------------------------------------------------------------------------------
+// Changes to this file must follow the http://aka.ms/api-review process.
+// ------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Security;
+
+[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+[assembly: AllowPartiallyTrustedCallers]
+[assembly: ReferenceAssembly]
+[assembly: AssemblyTitle("Humanizer.Core")]
+[assembly: AssemblyDescription("Humanizer.Core")]
+[assembly: AssemblyDefaultAlias("Humanizer.Core")]
+[assembly: AssemblyCompany("Microsoft Corporation")]
+[assembly: AssemblyProduct("Microsoft® .NET Framework")]
+[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
+[assembly: AssemblyFileVersion("2.2.0.0")]
+[assembly: AssemblyInformationalVersion("2.2.0.0 built by: SOURCEBUILD")]
+[assembly: CLSCompliant(true)]
+[assembly: AssemblyMetadata("", "")]
+[assembly: AssemblyVersion("2.2.0.0")]
+
+
+
+
+namespace Humanizer
+{
+ public static partial class ByteSizeExtensions
+ {
+ public static Humanizer.Bytes.ByteSize Bits(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bits(this uint input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this double input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Bytes(this uint input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this double input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Gigabytes(this uint input) { throw null; }
+ public static string Humanize(this Humanizer.Bytes.ByteSize input, string format = null) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this double input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Kilobytes(this uint input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this double input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Megabytes(this uint input) { throw null; }
+ public static Humanizer.Bytes.ByteRate Per(this Humanizer.Bytes.ByteSize size, System.TimeSpan interval) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this byte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this double input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this short input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this int input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this long input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this sbyte input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this ushort input) { throw null; }
+ public static Humanizer.Bytes.ByteSize Terabytes(this uint input) { throw null; }
+ }
+ public static partial class CasingExtensions
+ {
+ public static string ApplyCase(this string input, Humanizer.LetterCasing casing) { throw null; }
+ }
+ public static partial class CollectionHumanizeExtensions
+ {
+ public static string Humanize(this System.Collections.Generic.IEnumerable collection) { throw null; }
+ public static string Humanize(this System.Collections.Generic.IEnumerable collection, System.Func displayFormatter) { throw null; }
+ public static string Humanize(this System.Collections.Generic.IEnumerable collection, System.Func displayFormatter, string separator) { throw null; }
+ public static string Humanize(this System.Collections.Generic.IEnumerable collection, string separator) { throw null; }
+ }
+ public static partial class DateHumanizeExtensions
+ {
+ public static string Humanize(this System.DateTime input, bool utcDate = true, System.DateTime? dateToCompareAgainst = default(System.DateTime?), System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string Humanize(this System.DateTimeOffset input, System.DateTimeOffset? dateToCompareAgainst = default(System.DateTimeOffset?), System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string Humanize(this System.DateTimeOffset? input, System.DateTimeOffset? dateToCompareAgainst = default(System.DateTimeOffset?), System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string Humanize(this System.DateTime? input, bool utcDate = true, System.DateTime? dateToCompareAgainst = default(System.DateTime?), System.Globalization.CultureInfo culture = null) { throw null; }
+ }
+ public static partial class DateToOrdinalWordsExtensions
+ {
+ public static string ToOrdinalWords(this System.DateTime input) { throw null; }
+ public static string ToOrdinalWords(this System.DateTime input, Humanizer.GrammaticalCase grammaticalCase) { throw null; }
+ }
+ public static partial class EnumDehumanizeExtensions
+ {
+ public static System.Enum DehumanizeTo(this string input, System.Type targetEnum, Humanizer.OnNoMatch onNoMatch = Humanizer.OnNoMatch.ThrowsException) { throw null; }
+ public static TTargetEnum DehumanizeTo(this string input) where TTargetEnum : struct { throw null; }
+ }
+ public static partial class EnumHumanizeExtensions
+ {
+ public static string Humanize(this System.Enum input) { throw null; }
+ public static string Humanize(this System.Enum input, Humanizer.LetterCasing casing) { throw null; }
+ }
+ public enum GrammaticalCase
+ {
+ Nominative = 0,
+ Genitive = 1,
+ Dative = 2,
+ Accusative = 3,
+ Instrumental = 4,
+ Prepositional = 5,
+ }
+ public enum GrammaticalGender
+ {
+ Masculine = 0,
+ Feminine = 1,
+ Neuter = 2,
+ }
+ public partial class In
+ {
+ public In() { }
+ public static System.DateTime April { get { throw null; } }
+ public static System.DateTime August { get { throw null; } }
+ public static System.DateTime December { get { throw null; } }
+ public static System.DateTime February { get { throw null; } }
+ public static System.DateTime January { get { throw null; } }
+ public static System.DateTime July { get { throw null; } }
+ public static System.DateTime June { get { throw null; } }
+ public static System.DateTime March { get { throw null; } }
+ public static System.DateTime May { get { throw null; } }
+ public static System.DateTime November { get { throw null; } }
+ public static System.DateTime October { get { throw null; } }
+ public static System.DateTime September { get { throw null; } }
+ public static System.DateTime AprilOf(int year) { throw null; }
+ public static System.DateTime AugustOf(int year) { throw null; }
+ public static System.DateTime DecemberOf(int year) { throw null; }
+ public static System.DateTime FebruaryOf(int year) { throw null; }
+ public static System.DateTime JanuaryOf(int year) { throw null; }
+ public static System.DateTime JulyOf(int year) { throw null; }
+ public static System.DateTime JuneOf(int year) { throw null; }
+ public static System.DateTime MarchOf(int year) { throw null; }
+ public static System.DateTime MayOf(int year) { throw null; }
+ public static System.DateTime NovemberOf(int year) { throw null; }
+ public static System.DateTime OctoberOf(int year) { throw null; }
+ public static System.DateTime SeptemberOf(int year) { throw null; }
+ public static System.DateTime TheYear(int year) { throw null; }
+ public static partial class Eight
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Five
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Four
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Nine
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class One
+ {
+ public static System.DateTime Day { get { throw null; } }
+ public static System.DateTime Hour { get { throw null; } }
+ public static System.DateTime Minute { get { throw null; } }
+ public static System.DateTime Month { get { throw null; } }
+ public static System.DateTime Second { get { throw null; } }
+ public static System.DateTime Week { get { throw null; } }
+ public static System.DateTime Year { get { throw null; } }
+ public static System.DateTime DayFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HourFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinuteFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeekFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Seven
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Six
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Ten
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Three
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ public static partial class Two
+ {
+ public static System.DateTime Days { get { throw null; } }
+ public static System.DateTime Hours { get { throw null; } }
+ public static System.DateTime Minutes { get { throw null; } }
+ public static System.DateTime Months { get { throw null; } }
+ public static System.DateTime Seconds { get { throw null; } }
+ public static System.DateTime Weeks { get { throw null; } }
+ public static System.DateTime Years { get { throw null; } }
+ public static System.DateTime DaysFrom(System.DateTime date) { throw null; }
+ public static System.DateTime HoursFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MinutesFrom(System.DateTime date) { throw null; }
+ public static System.DateTime MonthsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime SecondsFrom(System.DateTime date) { throw null; }
+ public static System.DateTime WeeksFrom(System.DateTime date) { throw null; }
+ public static System.DateTime YearsFrom(System.DateTime date) { throw null; }
+ }
+ }
+ public static partial class InflectorExtensions
+ {
+ public static string Camelize(this string input) { throw null; }
+ public static string Dasherize(this string underscoredWord) { throw null; }
+ public static string Hyphenate(this string underscoredWord) { throw null; }
+ public static string Kebaberize(this string input) { throw null; }
+ public static string Pascalize(this string input) { throw null; }
+ public static string Pluralize(this string word, bool inputIsKnownToBeSingular = true) { throw null; }
+ public static string Singularize(this string word, bool inputIsKnownToBePlural = true) { throw null; }
+ public static string Titleize(this string input) { throw null; }
+ public static string Underscore(this string input) { throw null; }
+ }
+ public partial interface IStringTransformer
+ {
+ string Transform(string input);
+ }
+ public partial interface ITruncator
+ {
+ string Truncate(string value, int length, string truncationString, Humanizer.TruncateFrom truncateFrom = Humanizer.TruncateFrom.Right);
+ }
+ public enum LetterCasing
+ {
+ Title = 0,
+ AllCaps = 1,
+ LowerCase = 2,
+ Sentence = 3,
+ }
+ public static partial class MetricNumeralExtensions
+ {
+ public static double FromMetric(this string input) { throw null; }
+ public static string ToMetric(this double input, bool hasSpace = false, bool useSymbol = true, int? decimals = default(int?)) { throw null; }
+ public static string ToMetric(this int input, bool hasSpace = false, bool useSymbol = true, int? decimals = default(int?)) { throw null; }
+ }
+ public partial class NoMatchFoundException : System.Exception
+ {
+ public NoMatchFoundException() { }
+ public NoMatchFoundException(string message) { }
+ public NoMatchFoundException(string message, System.Exception inner) { }
+ }
+ public static partial class NumberToNumberExtensions
+ {
+ public static double Billions(this double input) { throw null; }
+ public static int Billions(this int input) { throw null; }
+ public static long Billions(this long input) { throw null; }
+ public static uint Billions(this uint input) { throw null; }
+ public static ulong Billions(this ulong input) { throw null; }
+ public static double Hundreds(this double input) { throw null; }
+ public static int Hundreds(this int input) { throw null; }
+ public static long Hundreds(this long input) { throw null; }
+ public static uint Hundreds(this uint input) { throw null; }
+ public static ulong Hundreds(this ulong input) { throw null; }
+ public static double Millions(this double input) { throw null; }
+ public static int Millions(this int input) { throw null; }
+ public static long Millions(this long input) { throw null; }
+ public static uint Millions(this uint input) { throw null; }
+ public static ulong Millions(this ulong input) { throw null; }
+ public static double Tens(this double input) { throw null; }
+ public static int Tens(this int input) { throw null; }
+ public static long Tens(this long input) { throw null; }
+ public static uint Tens(this uint input) { throw null; }
+ public static ulong Tens(this ulong input) { throw null; }
+ public static double Thousands(this double input) { throw null; }
+ public static int Thousands(this int input) { throw null; }
+ public static long Thousands(this long input) { throw null; }
+ public static uint Thousands(this uint input) { throw null; }
+ public static ulong Thousands(this ulong input) { throw null; }
+ }
+ public static partial class NumberToTimeSpanExtensions
+ {
+ public static System.TimeSpan Days(this byte days) { throw null; }
+ public static System.TimeSpan Days(this double days) { throw null; }
+ public static System.TimeSpan Days(this short days) { throw null; }
+ public static System.TimeSpan Days(this int days) { throw null; }
+ public static System.TimeSpan Days(this long days) { throw null; }
+ public static System.TimeSpan Days(this sbyte days) { throw null; }
+ public static System.TimeSpan Days(this ushort days) { throw null; }
+ public static System.TimeSpan Days(this uint days) { throw null; }
+ public static System.TimeSpan Days(this ulong days) { throw null; }
+ public static System.TimeSpan Hours(this byte hours) { throw null; }
+ public static System.TimeSpan Hours(this double hours) { throw null; }
+ public static System.TimeSpan Hours(this short hours) { throw null; }
+ public static System.TimeSpan Hours(this int hours) { throw null; }
+ public static System.TimeSpan Hours(this long hours) { throw null; }
+ public static System.TimeSpan Hours(this sbyte hours) { throw null; }
+ public static System.TimeSpan Hours(this ushort hours) { throw null; }
+ public static System.TimeSpan Hours(this uint hours) { throw null; }
+ public static System.TimeSpan Hours(this ulong hours) { throw null; }
+ public static System.TimeSpan Milliseconds(this byte ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this double ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this short ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this int ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this long ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this sbyte ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this ushort ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this uint ms) { throw null; }
+ public static System.TimeSpan Milliseconds(this ulong ms) { throw null; }
+ public static System.TimeSpan Minutes(this byte minutes) { throw null; }
+ public static System.TimeSpan Minutes(this double minutes) { throw null; }
+ public static System.TimeSpan Minutes(this short minutes) { throw null; }
+ public static System.TimeSpan Minutes(this int minutes) { throw null; }
+ public static System.TimeSpan Minutes(this long minutes) { throw null; }
+ public static System.TimeSpan Minutes(this sbyte minutes) { throw null; }
+ public static System.TimeSpan Minutes(this ushort minutes) { throw null; }
+ public static System.TimeSpan Minutes(this uint minutes) { throw null; }
+ public static System.TimeSpan Minutes(this ulong minutes) { throw null; }
+ public static System.TimeSpan Seconds(this byte seconds) { throw null; }
+ public static System.TimeSpan Seconds(this double seconds) { throw null; }
+ public static System.TimeSpan Seconds(this short seconds) { throw null; }
+ public static System.TimeSpan Seconds(this int seconds) { throw null; }
+ public static System.TimeSpan Seconds(this long seconds) { throw null; }
+ public static System.TimeSpan Seconds(this sbyte seconds) { throw null; }
+ public static System.TimeSpan Seconds(this ushort seconds) { throw null; }
+ public static System.TimeSpan Seconds(this uint seconds) { throw null; }
+ public static System.TimeSpan Seconds(this ulong seconds) { throw null; }
+ public static System.TimeSpan Weeks(this byte input) { throw null; }
+ public static System.TimeSpan Weeks(this double input) { throw null; }
+ public static System.TimeSpan Weeks(this short input) { throw null; }
+ public static System.TimeSpan Weeks(this int input) { throw null; }
+ public static System.TimeSpan Weeks(this long input) { throw null; }
+ public static System.TimeSpan Weeks(this sbyte input) { throw null; }
+ public static System.TimeSpan Weeks(this ushort input) { throw null; }
+ public static System.TimeSpan Weeks(this uint input) { throw null; }
+ public static System.TimeSpan Weeks(this ulong input) { throw null; }
+ }
+ public static partial class NumberToWordsExtension
+ {
+ public static string ToOrdinalWords(this int number, Humanizer.GrammaticalGender gender, System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string ToOrdinalWords(this int number, System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string ToWords(this int number, Humanizer.GrammaticalGender gender, System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string ToWords(this int number, System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string ToWords(this long number, Humanizer.GrammaticalGender gender, System.Globalization.CultureInfo culture = null) { throw null; }
+ public static string ToWords(this long number, System.Globalization.CultureInfo culture = null) { throw null; }
+ }
+ public partial class On
+ {
+ public On() { }
+ public partial class April
+ {
+ public April() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class August
+ {
+ public August() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class December
+ {
+ public December() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class February
+ {
+ public February() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class January
+ {
+ public January() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class July
+ {
+ public July() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class June
+ {
+ public June() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class March
+ {
+ public March() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class May
+ {
+ public May() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class November
+ {
+ public November() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class October
+ {
+ public October() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The31st { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ public partial class September
+ {
+ public September() { }
+ public static System.DateTime The10th { get { throw null; } }
+ public static System.DateTime The11th { get { throw null; } }
+ public static System.DateTime The12th { get { throw null; } }
+ public static System.DateTime The13th { get { throw null; } }
+ public static System.DateTime The14th { get { throw null; } }
+ public static System.DateTime The15th { get { throw null; } }
+ public static System.DateTime The16th { get { throw null; } }
+ public static System.DateTime The17th { get { throw null; } }
+ public static System.DateTime The18th { get { throw null; } }
+ public static System.DateTime The19th { get { throw null; } }
+ public static System.DateTime The1st { get { throw null; } }
+ public static System.DateTime The20th { get { throw null; } }
+ public static System.DateTime The21st { get { throw null; } }
+ public static System.DateTime The22nd { get { throw null; } }
+ public static System.DateTime The23rd { get { throw null; } }
+ public static System.DateTime The24th { get { throw null; } }
+ public static System.DateTime The25th { get { throw null; } }
+ public static System.DateTime The26th { get { throw null; } }
+ public static System.DateTime The27th { get { throw null; } }
+ public static System.DateTime The28th { get { throw null; } }
+ public static System.DateTime The29th { get { throw null; } }
+ public static System.DateTime The2nd { get { throw null; } }
+ public static System.DateTime The30th { get { throw null; } }
+ public static System.DateTime The3rd { get { throw null; } }
+ public static System.DateTime The4th { get { throw null; } }
+ public static System.DateTime The5th { get { throw null; } }
+ public static System.DateTime The6th { get { throw null; } }
+ public static System.DateTime The7th { get { throw null; } }
+ public static System.DateTime The8th { get { throw null; } }
+ public static System.DateTime The9th { get { throw null; } }
+ public static System.DateTime The(int dayNumber) { throw null; }
+ }
+ }
+ public enum OnNoMatch
+ {
+ ThrowsException = 0,
+ ReturnsNull = 1,
+ }
+ public static partial class OrdinalizeExtensions
+ {
+ public static string Ordinalize(this int number) { throw null; }
+ public static string Ordinalize(this int number, Humanizer.GrammaticalGender gender) { throw null; }
+ public static string Ordinalize(this string numberString) { throw null; }
+ public static string Ordinalize(this string numberString, Humanizer.GrammaticalGender gender) { throw null; }
+ }
+ public enum Plurality
+ {
+ Singular = 0,
+ Plural = 1,
+ CouldBeEither = 2,
+ }
+ public static partial class PrepositionsExtensions
+ {
+ public static System.DateTime At(this System.DateTime date, int hour, int min = 0, int second = 0, int millisecond = 0) { throw null; }
+ public static System.DateTime AtMidnight(this System.DateTime date) { throw null; }
+ public static System.DateTime AtNoon(this System.DateTime date) { throw null; }
+ public static System.DateTime In(this System.DateTime date, int year) { throw null; }
+ }
+ public static partial class RomanNumeralExtensions
+ {
+ public static int FromRoman(this string input) { throw null; }
+ public static string ToRoman(this int input) { throw null; }
+ }
+ public enum ShowQuantityAs
+ {
+ None = 0,
+ Numeric = 1,
+ Words = 2,
+ }
+ public static partial class StringDehumanizeExtensions
+ {
+ public static string Dehumanize(this string input) { throw null; }
+ }
+ public static partial class StringExtensions
+ {
+ public static string FormatWith(this string format, System.IFormatProvider provider, params object[] args) { throw null; }
+ public static string FormatWith(this string format, params object[] args) { throw null; }
+ }
+ public static partial class StringHumanizeExtensions
+ {
+ public static string Humanize(this string input) { throw null; }
+ public static string Humanize(this string input, Humanizer.LetterCasing casing) { throw null; }
+ }
+ public static partial class TimeSpanHumanizeExtensions
+ {
+ public static string Humanize(this System.TimeSpan timeSpan, int precision, bool countEmptyUnits, System.Globalization.CultureInfo culture = null, Humanizer.Localisation.TimeUnit maxUnit = Humanizer.Localisation.TimeUnit.Week, Humanizer.Localisation.TimeUnit minUnit = Humanizer.Localisation.TimeUnit.Millisecond, string collectionSeparator = ", ") { throw null; }
+ public static string Humanize(this System.TimeSpan timeSpan, int precision = 1, System.Globalization.CultureInfo culture = null, Humanizer.Localisation.TimeUnit maxUnit = Humanizer.Localisation.TimeUnit.Week, Humanizer.Localisation.TimeUnit minUnit = Humanizer.Localisation.TimeUnit.Millisecond, string collectionSeparator = ", ") { throw null; }
+ }
+ public static partial class To
+ {
+ public static Humanizer.IStringTransformer LowerCase { get { throw null; } }
+ public static Humanizer.IStringTransformer SentenceCase { get { throw null; } }
+ public static Humanizer.IStringTransformer TitleCase { get { throw null; } }
+ public static Humanizer.IStringTransformer UpperCase { get { throw null; } }
+ public static string Transform(this string input, params Humanizer.IStringTransformer[] transformers) { throw null; }
+ }
+ public static partial class ToQuantityExtensions
+ {
+ public static string ToQuantity(this string input, int quantity, Humanizer.ShowQuantityAs showQuantityAs = Humanizer.ShowQuantityAs.Numeric) { throw null; }
+ public static string ToQuantity(this string input, int quantity, string format, System.IFormatProvider formatProvider = null) { throw null; }
+ public static string ToQuantity(this string input, long quantity, Humanizer.ShowQuantityAs showQuantityAs = Humanizer.ShowQuantityAs.Numeric) { throw null; }
+ public static string ToQuantity(this string input, long quantity, string format, System.IFormatProvider formatProvider = null) { throw null; }
+ }
+ public static partial class TruncateExtensions
+ {
+ public static string Truncate(this string input, int length) { throw null; }
+ public static string Truncate(this string input, int length, Humanizer.ITruncator truncator, Humanizer.TruncateFrom from = Humanizer.TruncateFrom.Right) { throw null; }
+ public static string Truncate(this string input, int length, string truncationString, Humanizer.ITruncator truncator, Humanizer.TruncateFrom from = Humanizer.TruncateFrom.Right) { throw null; }
+ public static string Truncate(this string input, int length, string truncationString, Humanizer.TruncateFrom from = Humanizer.TruncateFrom.Right) { throw null; }
+ }
+ public enum TruncateFrom
+ {
+ Left = 0,
+ Right = 1,
+ }
+ public static partial class Truncator
+ {
+ public static Humanizer.ITruncator FixedLength { get { throw null; } }
+ public static Humanizer.ITruncator FixedNumberOfCharacters { get { throw null; } }
+ public static Humanizer.ITruncator FixedNumberOfWords { get { throw null; } }
+ }
+}
+namespace Humanizer.Bytes
+{
+ public partial class ByteRate
+ {
+ public ByteRate(Humanizer.Bytes.ByteSize size, System.TimeSpan interval) { }
+ public System.TimeSpan Interval { get { throw null; } }
+ public Humanizer.Bytes.ByteSize Size { get { throw null; } }
+ public string Humanize(Humanizer.Localisation.TimeUnit timeUnit = Humanizer.Localisation.TimeUnit.Second) { throw null; }
+ public string Humanize(string format, Humanizer.Localisation.TimeUnit timeUnit = Humanizer.Localisation.TimeUnit.Second) { throw null; }
+ }
+ public partial struct ByteSize : System.IComparable, System.IComparable, System.IEquatable
+ {
+ private int _dummyPrimitive;
+ public const long BitsInByte = (long)8;
+ public const string BitSymbol = "b";
+ public const long BytesInGigabyte = (long)1073741824;
+ public const long BytesInKilobyte = (long)1024;
+ public const long BytesInMegabyte = (long)1048576;
+ public const long BytesInTerabyte = (long)1099511627776;
+ public const string ByteSymbol = "B";
+ public const string GigabyteSymbol = "GB";
+ public const string KilobyteSymbol = "KB";
+ public static readonly Humanizer.Bytes.ByteSize MaxValue;
+ public const string MegabyteSymbol = "MB";
+ public static readonly Humanizer.Bytes.ByteSize MinValue;
+ public const string TerabyteSymbol = "TB";
+ public ByteSize(double byteSize) { throw null; }
+ public long Bits { get { throw null; } }
+ public double Bytes { get { throw null; } }
+ public double Gigabytes { get { throw null; } }
+ public double Kilobytes { get { throw null; } }
+ public string LargestWholeNumberSymbol { get { throw null; } }
+ public double LargestWholeNumberValue { get { throw null; } }
+ public double Megabytes { get { throw null; } }
+ public double Terabytes { get { throw null; } }
+ public Humanizer.Bytes.ByteSize Add(Humanizer.Bytes.ByteSize bs) { throw null; }
+ public Humanizer.Bytes.ByteSize AddBits(long value) { throw null; }
+ public Humanizer.Bytes.ByteSize AddBytes(double value) { throw null; }
+ public Humanizer.Bytes.ByteSize AddGigabytes(double value) { throw null; }
+ public Humanizer.Bytes.ByteSize AddKilobytes(double value) { throw null; }
+ public Humanizer.Bytes.ByteSize AddMegabytes(double value) { throw null; }
+ public Humanizer.Bytes.ByteSize AddTerabytes(double value) { throw null; }
+ public int CompareTo(Humanizer.Bytes.ByteSize other) { throw null; }
+ public int CompareTo(object obj) { throw null; }
+ public bool Equals(Humanizer.Bytes.ByteSize value) { throw null; }
+ public override bool Equals(object value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromBits(long value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromBytes(double value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromGigabytes(double value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromKilobytes(double value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromMegabytes(double value) { throw null; }
+ public static Humanizer.Bytes.ByteSize FromTerabytes(double value) { throw null; }
+ public override int GetHashCode() { throw null; }
+ public static Humanizer.Bytes.ByteSize operator +(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static Humanizer.Bytes.ByteSize operator --(Humanizer.Bytes.ByteSize b) { throw null; }
+ public static bool operator ==(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static bool operator >(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static bool operator >=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static Humanizer.Bytes.ByteSize operator ++(Humanizer.Bytes.ByteSize b) { throw null; }
+ public static bool operator !=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static bool operator <(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static bool operator <=(Humanizer.Bytes.ByteSize b1, Humanizer.Bytes.ByteSize b2) { throw null; }
+ public static Humanizer.Bytes.ByteSize operator -(Humanizer.Bytes.ByteSize b) { throw null; }
+ public static Humanizer.Bytes.ByteSize Parse(string s) { throw null; }
+ public Humanizer.Bytes.ByteSize Subtract(Humanizer.Bytes.ByteSize bs) { throw null; }
+ public override string ToString() { throw null; }
+ public string ToString(string format) { throw null; }
+ public static bool TryParse(string s, out Humanizer.Bytes.ByteSize result) { throw null; }
+ }
+}
+namespace Humanizer.Configuration
+{
+ public static partial class Configurator
+ {
+ public static Humanizer.Configuration.LocaliserRegistry CollectionFormatters { get { throw null; } }
+ public static Humanizer.DateTimeHumanizeStrategy.IDateTimeHumanizeStrategy DateTimeHumanizeStrategy { get { throw null; } set { } }
+ public static Humanizer.DateTimeHumanizeStrategy.IDateTimeOffsetHumanizeStrategy DateTimeOffsetHumanizeStrategy { get { throw null; } set { } }
+ public static Humanizer.Configuration.LocaliserRegistry DateToOrdinalWordsConverters { get { throw null; } }
+ public static System.Func EnumDescriptionPropertyLocator { get { throw null; } set { } }
+ public static Humanizer.Configuration.LocaliserRegistry Formatters { get { throw null; } }
+ public static Humanizer.Configuration.LocaliserRegistry NumberToWordsConverters { get { throw null; } }
+ public static Humanizer.Configuration.LocaliserRegistry Ordinalizers { get { throw null; } }
+ }
+ public partial class LocaliserRegistry where TLocaliser : class
+ {
+ public LocaliserRegistry(System.Func defaultLocaliser) { }
+ public LocaliserRegistry(TLocaliser defaultLocaliser) { }
+ public void Register(string localeCode, System.Func localiser) { }
+ public void Register(string localeCode, TLocaliser localiser) { }
+ public TLocaliser ResolveForCulture(System.Globalization.CultureInfo culture) { throw null; }
+ public TLocaliser ResolveForUiCulture() { throw null; }
+ }
+}
+namespace Humanizer.DateTimeHumanizeStrategy
+{
+ public partial class DefaultDateTimeHumanizeStrategy : Humanizer.DateTimeHumanizeStrategy.IDateTimeHumanizeStrategy
+ {
+ public DefaultDateTimeHumanizeStrategy() { }
+ public string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture) { throw null; }
+ }
+ public partial class DefaultDateTimeOffsetHumanizeStrategy : Humanizer.DateTimeHumanizeStrategy.IDateTimeOffsetHumanizeStrategy
+ {
+ public DefaultDateTimeOffsetHumanizeStrategy() { }
+ public string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture) { throw null; }
+ }
+ public partial interface IDateTimeHumanizeStrategy
+ {
+ string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture);
+ }
+ public partial interface IDateTimeOffsetHumanizeStrategy
+ {
+ string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture);
+ }
+ public partial class PrecisionDateTimeHumanizeStrategy : Humanizer.DateTimeHumanizeStrategy.IDateTimeHumanizeStrategy
+ {
+ public PrecisionDateTimeHumanizeStrategy(double precision = 0.75) { }
+ public string Humanize(System.DateTime input, System.DateTime comparisonBase, System.Globalization.CultureInfo culture) { throw null; }
+ }
+ public partial class PrecisionDateTimeOffsetHumanizeStrategy : Humanizer.DateTimeHumanizeStrategy.IDateTimeOffsetHumanizeStrategy
+ {
+ public PrecisionDateTimeOffsetHumanizeStrategy(double precision = 0.75) { }
+ public string Humanize(System.DateTimeOffset input, System.DateTimeOffset comparisonBase, System.Globalization.CultureInfo culture) { throw null; }
+ }
+}
+namespace Humanizer.Inflections
+{
+ public static partial class Vocabularies
+ {
+ public static Humanizer.Inflections.Vocabulary Default { get { throw null; } }
+ }
+ public partial class Vocabulary
+ {
+ internal Vocabulary() { }
+ public void AddIrregular(string singular, string plural, bool matchEnding = true) { }
+ public void AddPlural(string rule, string replacement) { }
+ public void AddSingular(string rule, string replacement) { }
+ public void AddUncountable(string word) { }
+ public string Pluralize(string word, bool inputIsKnownToBeSingular = true) { throw null; }
+ public string Singularize(string word, bool inputIsKnownToBePlural = true) { throw null; }
+ }
+}
+namespace Humanizer.Localisation
+{
+ public partial class ResourceKeys
+ {
+ public ResourceKeys() { }
+ public static partial class DateHumanize
+ {
+ public const string Never = "DateHumanize_Never";
+ public const string Now = "DateHumanize_Now";
+ public static string GetResourceKey(Humanizer.Localisation.TimeUnit timeUnit, Humanizer.Localisation.Tense timeUnitTense, int count = 1) { throw null; }
+ }
+ public static partial class TimeSpanHumanize
+ {
+ public static string GetResourceKey(Humanizer.Localisation.TimeUnit unit, int count = 1) { throw null; }
+ }
+ }
+ public static partial class Resources
+ {
+ public static string GetResource(string resourceKey, System.Globalization.CultureInfo culture = null) { throw null; }
+ }
+ public enum Tense
+ {
+ Future = 0,
+ Past = 1,
+ }
+ public enum TimeUnit
+ {
+ Millisecond = 0,
+ Second = 1,
+ Minute = 2,
+ Hour = 3,
+ Day = 4,
+ Week = 5,
+ Month = 6,
+ Year = 7,
+ }
+}
+namespace Humanizer.Localisation.CollectionFormatters
+{
+ public partial interface ICollectionFormatter
+ {
+ string Humanize(System.Collections.Generic.IEnumerable collection);
+ string Humanize(System.Collections.Generic.IEnumerable collection, System.Func objectFormatter);
+ string Humanize(System.Collections.Generic.IEnumerable collection, System.Func objectFormatter, string separator);
+ string Humanize(System.Collections.Generic.IEnumerable collection, string separator);
+ }
+}
+namespace Humanizer.Localisation.DateToOrdinalWords
+{
+ public partial interface IDateToOrdinalWordConverter
+ {
+ string Convert(System.DateTime date);
+ string Convert(System.DateTime date, Humanizer.GrammaticalCase grammaticalCase);
+ }
+}
+namespace Humanizer.Localisation.Formatters
+{
+ public partial class DefaultFormatter : Humanizer.Localisation.Formatters.IFormatter
+ {
+ public DefaultFormatter(string localeCode) { }
+ public virtual string DateHumanize(Humanizer.Localisation.TimeUnit timeUnit, Humanizer.Localisation.Tense timeUnitTense, int unit) { throw null; }
+ public virtual string DateHumanize_Never() { throw null; }
+ public virtual string DateHumanize_Now() { throw null; }
+ protected virtual string Format(string resourceKey) { throw null; }
+ protected virtual string Format(string resourceKey, int number) { throw null; }
+ protected virtual string GetResourceKey(string resourceKey) { throw null; }
+ protected virtual string GetResourceKey(string resourceKey, int number) { throw null; }
+ public virtual string TimeSpanHumanize(Humanizer.Localisation.TimeUnit timeUnit, int unit) { throw null; }
+ public virtual string TimeSpanHumanize_Zero() { throw null; }
+ }
+ public partial interface IFormatter
+ {
+ string DateHumanize(Humanizer.Localisation.TimeUnit timeUnit, Humanizer.Localisation.Tense timeUnitTense, int unit);
+ string DateHumanize_Never();
+ string DateHumanize_Now();
+ string TimeSpanHumanize(Humanizer.Localisation.TimeUnit timeUnit, int unit);
+ string TimeSpanHumanize_Zero();
+ }
+}
+namespace Humanizer.Localisation.NumberToWords
+{
+ public partial interface INumberToWordsConverter
+ {
+ string Convert(long number);
+ string Convert(long number, Humanizer.GrammaticalGender gender);
+ string ConvertToOrdinal(int number);
+ string ConvertToOrdinal(int number, Humanizer.GrammaticalGender gender);
+ }
+}
+namespace Humanizer.Localisation.Ordinalizers
+{
+ public partial interface IOrdinalizer
+ {
+ string Convert(int number, string numberString);
+ string Convert(int number, string numberString, Humanizer.GrammaticalGender gender);
+ }
+}
diff --git a/src/referencePackages/src/humanizer.core/Directory.Build.props b/src/referencePackages/src/humanizer.core/Directory.Build.props
new file mode 100644
index 0000000000..18ffc5707d
--- /dev/null
+++ b/src/referencePackages/src/humanizer.core/Directory.Build.props
@@ -0,0 +1,9 @@
+
+
+
+
+
+ Humanizer.Core
+
+
+
diff --git a/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/Microsoft.Extensions.Logging.Abstractions.7.0.0.csproj b/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/Microsoft.Extensions.Logging.Abstractions.7.0.0.csproj
new file mode 100644
index 0000000000..3b19d4b2c7
--- /dev/null
+++ b/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/Microsoft.Extensions.Logging.Abstractions.7.0.0.csproj
@@ -0,0 +1,40 @@
+
+
+
+
+ netstandard2.0;net462
+ $(ArtifactsBinDir)microsoft.extensions.logging.abstractions/7.0.0/microsoft.extensions.logging.abstractions.nuspec
+ MicrosoftAspNetCore
+
+
+
+ $(ArtifactsBinDir)microsoft.extensions.logging.abstractions/7.0.0/ref/
+ $(ArtifactsObjDir)microsoft.extensions.logging.abstractions/7.0.0
+
+
+
+ $(ArtifactsBinDir)microsoft.extensions.logging.abstractions/7.0.0/lib/
+
+
+
+ $(ArtifactsBinDir)microsoft.extensions.logging.abstractions/7.0.0/lib/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/lib/net462/Microsoft.Extensions.Logging.Abstractions.cs b/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/lib/net462/Microsoft.Extensions.Logging.Abstractions.cs
new file mode 100644
index 0000000000..dee16692b5
--- /dev/null
+++ b/src/referencePackages/src/microsoft.extensions.logging.abstractions/7.0.0/lib/net462/Microsoft.Extensions.Logging.Abstractions.cs
@@ -0,0 +1,223 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+// ------------------------------------------------------------------------------
+// Changes to this file must follow the http://aka.ms/api-review process.
+// ------------------------------------------------------------------------------
+
+using System;
+using System.Diagnostics;
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Security;
+
+[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+[assembly: AllowPartiallyTrustedCallers]
+[assembly: ReferenceAssembly]
+[assembly: AssemblyTitle("Microsoft.Extensions.Logging.Abstractions")]
+[assembly: AssemblyDescription("Microsoft.Extensions.Logging.Abstractions")]
+[assembly: AssemblyDefaultAlias("Microsoft.Extensions.Logging.Abstractions")]
+[assembly: AssemblyCompany("Microsoft Corporation")]
+[assembly: AssemblyProduct("Microsoft® .NET Framework")]
+[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
+[assembly: AssemblyFileVersion("7.0.22.51805")]
+[assembly: AssemblyInformationalVersion("7.0.22.51805 built by: SOURCEBUILD")]
+[assembly: CLSCompliant(true)]
+[assembly: AssemblyMetadata("", "")]
+[assembly: AssemblyVersion("7.0.0.0")]
+
+
+
+
+namespace Microsoft.Extensions.Logging
+{
+ public readonly partial struct EventId : System.IEquatable
+ {
+ private readonly object _dummy;
+ private readonly int _dummyPrimitive;
+ public EventId(int id, string? name = null) { throw null; }
+ public int Id { get { throw null; } }
+ public string? Name { get { throw null; } }
+ public bool Equals(Microsoft.Extensions.Logging.EventId other) { throw null; }
+ public override bool Equals(object? obj) { throw null; }
+ public override int GetHashCode() { throw null; }
+ public static bool operator ==(Microsoft.Extensions.Logging.EventId left, Microsoft.Extensions.Logging.EventId right) { throw null; }
+ public static implicit operator Microsoft.Extensions.Logging.EventId (int i) { throw null; }
+ public static bool operator !=(Microsoft.Extensions.Logging.EventId left, Microsoft.Extensions.Logging.EventId right) { throw null; }
+ public override string ToString() { throw null; }
+ }
+ public partial interface IExternalScopeProvider
+ {
+ void ForEachScope(System.Action