diff --git a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.deps.json b/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.deps.json deleted file mode 100644 index ae93740..0000000 --- a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "StevanFreeborn.Options/0.0.0": { - "runtime": { - "StevanFreeborn.Options.dll": {} - } - } - } - }, - "libraries": { - "StevanFreeborn.Options/0.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.dll deleted file mode 100644 index 408808e..0000000 Binary files a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.pdb b/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.pdb deleted file mode 100644 index 8ac784e..0000000 Binary files a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.pdb and /dev/null differ diff --git a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.xml b/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.xml deleted file mode 100644 index a1e399e..0000000 --- a/src/StevanFreeborn.Options/bin/Debug/net10.0/StevanFreeborn.Options.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - StevanFreeborn.Options - - - - - Provides factory methods for creating . - - - - - Creates an option with the specified value. - - The type of the value. - The value. - An with the specified value. - - - - Creates an empty option. - - The type of the value. - An empty . - - - - Creates an option from the specified value, returning None if the value is null. - - The type of the value. - The value. - An with the value if not null, otherwise None. - - - - Converts a value to an . - - The type of the value. - The value. - An . - - - - Represents an optional value that may or may not be present. - - The type of the value. - - - - Gets a value indicating whether the option has a value. - - - - - Gets a value indicating whether the option is empty. - - - - - Gets the value of the option. - - Thrown when accessing Value on a None option. - - - - Implicitly converts a value to an . - - The value to convert. - - - - Deconstructs the option into its components. - - Indicates whether the option has a value. - The value of the option. - - - - Maps the value to a new type if the option has a value. - - The new type. - The function to map the value. - A new with the mapped value if Some, otherwise None. - Thrown when mapper is null. - - - - Binds to a new option if the current option has a value. - - The new option type. - The function to bind to on Some. - The result of the binder function if Some, otherwise None. - Thrown when binder is null. - - - - Matches the option and returns a value based on whether it has a value. - - The type of the result. - The function to execute on Some. - The function to execute on None. - The result of the appropriate function. - Thrown when onSome or onNone is null. - - - - Matches the option and executes the appropriate action. - - The action to execute on Some. - The action to execute on None. - Thrown when onSome or onNone is null. - - - - Filters the option based on the specified predicate. - - The predicate to filter with. - The current option if Some and the predicate is met, otherwise None. - Thrown when predicate is null. - - - - Gets the value of the option if Some, otherwise the specified default value. - - The default value. - The value if Some, otherwise the default value. - - - - Gets the value of the option if Some, otherwise the result of the specified factory function. - - The factory function to provide the default value. - The value if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Returns the current option if Some, otherwise the result of the specified factory function. - - The factory function to provide the fallback option. - The current option if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Provides async extension methods for . - - - - - Maps the value to a new type asynchronously if the option has a value. - - The type of the value. - The new type. - The option. - The async function to map the value. - A task containing a new with the mapped value if Some, otherwise None. - Thrown when option or mapper is null. - - - - Binds to a new async result if the current option has a value. - - The type of the value. - The new result type. - The option. - The async function to bind to on Some. - A task containing the result of the binder function if Some, otherwise None. - Thrown when option or binder is null. - - - - Matches the option asynchronously and returns a value based on whether it has a value. - - The type of the value. - The type of the result. - The option. - The async function to execute on Some. - The async function to execute on None. - A task containing the result of the appropriate function. - Thrown when option, onSome, or onNone is null. - - - - Filters the option asynchronously based on the specified predicate. - - The type of the value. - The option. - The async predicate to filter with. - A task containing the current option if Some and the predicate is met, otherwise None. - Thrown when option or predicate is null. - - - - Returns the current option if Some, otherwise the result of the specified async factory function. - - The type of the value. - The option. - The async factory function to provide the fallback option. - A task containing the current option if Some, otherwise the result of the factory function. - Thrown when option or factory is null. - - - diff --git a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.deps.json b/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.deps.json deleted file mode 100644 index 9d1ab88..0000000 --- a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.deps.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.1/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.1": {}, - ".NETStandard,Version=v2.1/": { - "StevanFreeborn.Options/0.0.0": { - "runtime": { - "StevanFreeborn.Options.dll": {} - } - } - } - }, - "libraries": { - "StevanFreeborn.Options/0.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.dll deleted file mode 100644 index e906454..0000000 Binary files a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.pdb b/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.pdb deleted file mode 100644 index fe410b4..0000000 Binary files a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.pdb and /dev/null differ diff --git a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.xml b/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.xml deleted file mode 100644 index a1e399e..0000000 --- a/src/StevanFreeborn.Options/bin/Debug/netstandard2.1/StevanFreeborn.Options.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - StevanFreeborn.Options - - - - - Provides factory methods for creating . - - - - - Creates an option with the specified value. - - The type of the value. - The value. - An with the specified value. - - - - Creates an empty option. - - The type of the value. - An empty . - - - - Creates an option from the specified value, returning None if the value is null. - - The type of the value. - The value. - An with the value if not null, otherwise None. - - - - Converts a value to an . - - The type of the value. - The value. - An . - - - - Represents an optional value that may or may not be present. - - The type of the value. - - - - Gets a value indicating whether the option has a value. - - - - - Gets a value indicating whether the option is empty. - - - - - Gets the value of the option. - - Thrown when accessing Value on a None option. - - - - Implicitly converts a value to an . - - The value to convert. - - - - Deconstructs the option into its components. - - Indicates whether the option has a value. - The value of the option. - - - - Maps the value to a new type if the option has a value. - - The new type. - The function to map the value. - A new with the mapped value if Some, otherwise None. - Thrown when mapper is null. - - - - Binds to a new option if the current option has a value. - - The new option type. - The function to bind to on Some. - The result of the binder function if Some, otherwise None. - Thrown when binder is null. - - - - Matches the option and returns a value based on whether it has a value. - - The type of the result. - The function to execute on Some. - The function to execute on None. - The result of the appropriate function. - Thrown when onSome or onNone is null. - - - - Matches the option and executes the appropriate action. - - The action to execute on Some. - The action to execute on None. - Thrown when onSome or onNone is null. - - - - Filters the option based on the specified predicate. - - The predicate to filter with. - The current option if Some and the predicate is met, otherwise None. - Thrown when predicate is null. - - - - Gets the value of the option if Some, otherwise the specified default value. - - The default value. - The value if Some, otherwise the default value. - - - - Gets the value of the option if Some, otherwise the result of the specified factory function. - - The factory function to provide the default value. - The value if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Returns the current option if Some, otherwise the result of the specified factory function. - - The factory function to provide the fallback option. - The current option if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Provides async extension methods for . - - - - - Maps the value to a new type asynchronously if the option has a value. - - The type of the value. - The new type. - The option. - The async function to map the value. - A task containing a new with the mapped value if Some, otherwise None. - Thrown when option or mapper is null. - - - - Binds to a new async result if the current option has a value. - - The type of the value. - The new result type. - The option. - The async function to bind to on Some. - A task containing the result of the binder function if Some, otherwise None. - Thrown when option or binder is null. - - - - Matches the option asynchronously and returns a value based on whether it has a value. - - The type of the value. - The type of the result. - The option. - The async function to execute on Some. - The async function to execute on None. - A task containing the result of the appropriate function. - Thrown when option, onSome, or onNone is null. - - - - Filters the option asynchronously based on the specified predicate. - - The type of the value. - The option. - The async predicate to filter with. - A task containing the current option if Some and the predicate is met, otherwise None. - Thrown when option or predicate is null. - - - - Returns the current option if Some, otherwise the result of the specified async factory function. - - The type of the value. - The option. - The async factory function to provide the fallback option. - A task containing the current option if Some, otherwise the result of the factory function. - Thrown when option or factory is null. - - - diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/StevanFreeborn.Options/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfo.cs b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfo.cs deleted file mode 100644 index f48e03a..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyMetadata("IsTrimmable", "True")] -[assembly: System.Reflection.AssemblyMetadata("IsAotCompatible", "True")] -[assembly: System.Reflection.AssemblyCompanyAttribute("StevanFreeborn")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyDescriptionAttribute(("A minimalistic, AOT-compatible Option type library for functional programming in " + - ".NET."))] -[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("StevanFreeborn.Options")] -[assembly: System.Reflection.AssemblyTitleAttribute("StevanFreeborn.Options")] -[assembly: System.Reflection.AssemblyVersionAttribute("0.0.0.0")] -[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://gitea.freeborn.cloud/Stevan/stevanfreeborn.options")] -[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("StevanFreeborn.Options.Tests")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfoInputs.cache b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfoInputs.cache deleted file mode 100644 index a0ef6ee..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c6fc8ac2ac149f1a7cb4f1fe2d65ab001f9b34ee7a60f175f55b4cca8fa05136 diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c749b62..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,23 +0,0 @@ -is_global = true -build_property.EnableAotAnalyzer = true -build_property.EnableSingleFileAnalyzer = true -build_property.EnableTrimAnalyzer = true -build_property.IncludeAllContentForSelfExtract = -build_property.VerifyReferenceTrimCompatibility = -build_property.VerifyReferenceAotCompatibility = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = StevanFreeborn.Options -build_property.ProjectDir = C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GlobalUsings.g.cs b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.assets.cache b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.assets.cache deleted file mode 100644 index e07d569..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.assets.cache and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.CoreCompileInputs.cache b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.CoreCompileInputs.cache deleted file mode 100644 index 8f4bb05..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -ebdf8080e5385d95be1bfaaed13f788a1f16d93c26b797822d289e9bba47778d diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.FileListAbsolute.txt b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.FileListAbsolute.txt deleted file mode 100644 index 81dd4f9..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,13 +0,0 @@ -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.AssemblyInfoInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.AssemblyInfo.cs -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.csproj.CoreCompileInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.xml -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\net10.0\StevanFreeborn.Options.deps.json -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\net10.0\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\net10.0\StevanFreeborn.Options.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\net10.0\StevanFreeborn.Options.xml -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\refint\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\StevanFreeborn.Options.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\net10.0\ref\StevanFreeborn.Options.dll diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.dll deleted file mode 100644 index 408808e..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.pdb b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.pdb deleted file mode 100644 index 8ac784e..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.pdb and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.xml b/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.xml deleted file mode 100644 index a1e399e..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/net10.0/StevanFreeborn.Options.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - StevanFreeborn.Options - - - - - Provides factory methods for creating . - - - - - Creates an option with the specified value. - - The type of the value. - The value. - An with the specified value. - - - - Creates an empty option. - - The type of the value. - An empty . - - - - Creates an option from the specified value, returning None if the value is null. - - The type of the value. - The value. - An with the value if not null, otherwise None. - - - - Converts a value to an . - - The type of the value. - The value. - An . - - - - Represents an optional value that may or may not be present. - - The type of the value. - - - - Gets a value indicating whether the option has a value. - - - - - Gets a value indicating whether the option is empty. - - - - - Gets the value of the option. - - Thrown when accessing Value on a None option. - - - - Implicitly converts a value to an . - - The value to convert. - - - - Deconstructs the option into its components. - - Indicates whether the option has a value. - The value of the option. - - - - Maps the value to a new type if the option has a value. - - The new type. - The function to map the value. - A new with the mapped value if Some, otherwise None. - Thrown when mapper is null. - - - - Binds to a new option if the current option has a value. - - The new option type. - The function to bind to on Some. - The result of the binder function if Some, otherwise None. - Thrown when binder is null. - - - - Matches the option and returns a value based on whether it has a value. - - The type of the result. - The function to execute on Some. - The function to execute on None. - The result of the appropriate function. - Thrown when onSome or onNone is null. - - - - Matches the option and executes the appropriate action. - - The action to execute on Some. - The action to execute on None. - Thrown when onSome or onNone is null. - - - - Filters the option based on the specified predicate. - - The predicate to filter with. - The current option if Some and the predicate is met, otherwise None. - Thrown when predicate is null. - - - - Gets the value of the option if Some, otherwise the specified default value. - - The default value. - The value if Some, otherwise the default value. - - - - Gets the value of the option if Some, otherwise the result of the specified factory function. - - The factory function to provide the default value. - The value if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Returns the current option if Some, otherwise the result of the specified factory function. - - The factory function to provide the fallback option. - The current option if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Provides async extension methods for . - - - - - Maps the value to a new type asynchronously if the option has a value. - - The type of the value. - The new type. - The option. - The async function to map the value. - A task containing a new with the mapped value if Some, otherwise None. - Thrown when option or mapper is null. - - - - Binds to a new async result if the current option has a value. - - The type of the value. - The new result type. - The option. - The async function to bind to on Some. - A task containing the result of the binder function if Some, otherwise None. - Thrown when option or binder is null. - - - - Matches the option asynchronously and returns a value based on whether it has a value. - - The type of the value. - The type of the result. - The option. - The async function to execute on Some. - The async function to execute on None. - A task containing the result of the appropriate function. - Thrown when option, onSome, or onNone is null. - - - - Filters the option asynchronously based on the specified predicate. - - The type of the value. - The option. - The async predicate to filter with. - A task containing the current option if Some and the predicate is met, otherwise None. - Thrown when option or predicate is null. - - - - Returns the current option if Some, otherwise the result of the specified async factory function. - - The type of the value. - The option. - The async factory function to provide the fallback option. - A task containing the current option if Some, otherwise the result of the factory function. - Thrown when option or factory is null. - - - diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/ref/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/obj/Debug/net10.0/ref/StevanFreeborn.Options.dll deleted file mode 100644 index 232f171..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/net10.0/ref/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/net10.0/refint/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/obj/Debug/net10.0/refint/StevanFreeborn.Options.dll deleted file mode 100644 index 232f171..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/net10.0/refint/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs deleted file mode 100644 index 348b87f..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfo.cs b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfo.cs deleted file mode 100644 index 24c696f..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfo.cs +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("StevanFreeborn")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyDescriptionAttribute(("A minimalistic, AOT-compatible Option type library for functional programming in " + - ".NET."))] -[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("StevanFreeborn.Options")] -[assembly: System.Reflection.AssemblyTitleAttribute("StevanFreeborn.Options")] -[assembly: System.Reflection.AssemblyVersionAttribute("0.0.0.0")] -[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://gitea.freeborn.cloud/Stevan/stevanfreeborn.options")] -[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("StevanFreeborn.Options.Tests")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfoInputs.cache b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfoInputs.cache deleted file mode 100644 index 19a1729..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -227845e6f5a5a5a2185672ef274e4035ca9355bc7fb2552e1d3fe1a888bd2d50 diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d7f7ae6..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = netstandard2.1 -build_property.TargetFrameworkIdentifier = .NETStandard -build_property.TargetFrameworkVersion = v2.1 -build_property.TargetPlatformMinVersion = 7.0 -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = StevanFreeborn.Options -build_property.ProjectDir = C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.CsWinRTUseWindowsUIXamlProjections = false -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GlobalUsings.g.cs b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.assets.cache b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.assets.cache deleted file mode 100644 index 75ccce8..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.assets.cache and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.CoreCompileInputs.cache b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9876774..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -62ac793ace9ab30407364550ba8e3580470e39b4228eda9825ad061a3836bdc9 diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.FileListAbsolute.txt b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.FileListAbsolute.txt deleted file mode 100644 index 3622ab1..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,11 +0,0 @@ -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.AssemblyInfoInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.AssemblyInfo.cs -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.csproj.CoreCompileInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.xml -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\netstandard2.1\StevanFreeborn.Options.deps.json -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\netstandard2.1\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\netstandard2.1\StevanFreeborn.Options.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\bin\Debug\netstandard2.1\StevanFreeborn.Options.xml -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\src\StevanFreeborn.Options\obj\Debug\netstandard2.1\StevanFreeborn.Options.pdb diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.dll b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.dll deleted file mode 100644 index e906454..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.dll and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.pdb b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.pdb deleted file mode 100644 index fe410b4..0000000 Binary files a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.pdb and /dev/null differ diff --git a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.xml b/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.xml deleted file mode 100644 index a1e399e..0000000 --- a/src/StevanFreeborn.Options/obj/Debug/netstandard2.1/StevanFreeborn.Options.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - StevanFreeborn.Options - - - - - Provides factory methods for creating . - - - - - Creates an option with the specified value. - - The type of the value. - The value. - An with the specified value. - - - - Creates an empty option. - - The type of the value. - An empty . - - - - Creates an option from the specified value, returning None if the value is null. - - The type of the value. - The value. - An with the value if not null, otherwise None. - - - - Converts a value to an . - - The type of the value. - The value. - An . - - - - Represents an optional value that may or may not be present. - - The type of the value. - - - - Gets a value indicating whether the option has a value. - - - - - Gets a value indicating whether the option is empty. - - - - - Gets the value of the option. - - Thrown when accessing Value on a None option. - - - - Implicitly converts a value to an . - - The value to convert. - - - - Deconstructs the option into its components. - - Indicates whether the option has a value. - The value of the option. - - - - Maps the value to a new type if the option has a value. - - The new type. - The function to map the value. - A new with the mapped value if Some, otherwise None. - Thrown when mapper is null. - - - - Binds to a new option if the current option has a value. - - The new option type. - The function to bind to on Some. - The result of the binder function if Some, otherwise None. - Thrown when binder is null. - - - - Matches the option and returns a value based on whether it has a value. - - The type of the result. - The function to execute on Some. - The function to execute on None. - The result of the appropriate function. - Thrown when onSome or onNone is null. - - - - Matches the option and executes the appropriate action. - - The action to execute on Some. - The action to execute on None. - Thrown when onSome or onNone is null. - - - - Filters the option based on the specified predicate. - - The predicate to filter with. - The current option if Some and the predicate is met, otherwise None. - Thrown when predicate is null. - - - - Gets the value of the option if Some, otherwise the specified default value. - - The default value. - The value if Some, otherwise the default value. - - - - Gets the value of the option if Some, otherwise the result of the specified factory function. - - The factory function to provide the default value. - The value if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Returns the current option if Some, otherwise the result of the specified factory function. - - The factory function to provide the fallback option. - The current option if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Provides async extension methods for . - - - - - Maps the value to a new type asynchronously if the option has a value. - - The type of the value. - The new type. - The option. - The async function to map the value. - A task containing a new with the mapped value if Some, otherwise None. - Thrown when option or mapper is null. - - - - Binds to a new async result if the current option has a value. - - The type of the value. - The new result type. - The option. - The async function to bind to on Some. - A task containing the result of the binder function if Some, otherwise None. - Thrown when option or binder is null. - - - - Matches the option asynchronously and returns a value based on whether it has a value. - - The type of the value. - The type of the result. - The option. - The async function to execute on Some. - The async function to execute on None. - A task containing the result of the appropriate function. - Thrown when option, onSome, or onNone is null. - - - - Filters the option asynchronously based on the specified predicate. - - The type of the value. - The option. - The async predicate to filter with. - A task containing the current option if Some and the predicate is met, otherwise None. - Thrown when option or predicate is null. - - - - Returns the current option if Some, otherwise the result of the specified async factory function. - - The type of the value. - The option. - The async factory function to provide the fallback option. - A task containing the current option if Some, otherwise the result of the factory function. - Thrown when option or factory is null. - - - diff --git a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.dgspec.json b/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.dgspec.json deleted file mode 100644 index 953721f..0000000 --- a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.dgspec.json +++ /dev/null @@ -1,511 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj": {} - }, - "projects": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj": { - "version": "0.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "projectName": "StevanFreeborn.Options", - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "packagesPath": "C:\\Users\\sfree\\.nuget\\packages\\", - "outputPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\obj\\", - "projectStyle": "PackageReference", - "crossTargeting": true, - "centralPackageVersionsManagementEnabled": true, - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\sfree\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0", - "netstandard2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.200" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[10.0.5, )", - "autoReferenced": true - }, - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "dependencies": { - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "NETStandard.Library": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201\\RuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.Win32.Primitives": "(,4.3.0]", - "System.AppContext": "(,4.3.0]", - "System.Buffers": "(,4.6.1]", - "System.Collections": "(,4.3.0]", - "System.Collections.Concurrent": "(,4.3.0]", - "System.Collections.NonGeneric": "(,4.3.0]", - "System.Collections.Specialized": "(,4.3.0]", - "System.ComponentModel": "(,4.3.0]", - "System.ComponentModel.EventBasedAsync": "(,4.3.0]", - "System.ComponentModel.Primitives": "(,4.3.0]", - "System.ComponentModel.TypeConverter": "(,4.3.0]", - "System.Console": "(,4.3.1]", - "System.Data.Common": "(,4.3.0]", - "System.Diagnostics.Contracts": "(,4.3.0]", - "System.Diagnostics.Debug": "(,4.3.0]", - "System.Diagnostics.FileVersionInfo": "(,4.3.0]", - "System.Diagnostics.Process": "(,4.3.0]", - "System.Diagnostics.StackTrace": "(,4.3.0]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.0]", - "System.Diagnostics.Tools": "(,4.3.0]", - "System.Diagnostics.TraceSource": "(,4.3.0]", - "System.Diagnostics.Tracing": "(,4.3.0]", - "System.Drawing.Primitives": "(,4.3.0]", - "System.Dynamic.Runtime": "(,4.3.0]", - "System.Globalization": "(,4.3.0]", - "System.Globalization.Calendars": "(,4.3.0]", - "System.Globalization.Extensions": "(,4.3.0]", - "System.IO": "(,4.3.0]", - "System.IO.Compression": "(,4.3.0]", - "System.IO.Compression.ZipFile": "(,4.3.0]", - "System.IO.FileSystem": "(,4.3.0]", - "System.IO.FileSystem.DriveInfo": "(,4.3.1]", - "System.IO.FileSystem.Primitives": "(,4.3.0]", - "System.IO.FileSystem.Watcher": "(,4.3.0]", - "System.IO.IsolatedStorage": "(,4.3.0]", - "System.IO.MemoryMappedFiles": "(,4.3.0]", - "System.IO.Pipes": "(,4.3.0]", - "System.IO.UnmanagedMemoryStream": "(,4.3.0]", - "System.Linq": "(,4.3.0]", - "System.Linq.Expressions": "(,4.3.0]", - "System.Linq.Parallel": "(,4.3.0]", - "System.Linq.Queryable": "(,4.3.0]", - "System.Memory": "(,4.6.3]", - "System.Net.Http": "(,4.3.4]", - "System.Net.NameResolution": "(,4.3.0]", - "System.Net.NetworkInformation": "(,4.3.0]", - "System.Net.Ping": "(,4.3.0]", - "System.Net.Primitives": "(,4.3.1]", - "System.Net.Requests": "(,4.3.0]", - "System.Net.Security": "(,4.3.2]", - "System.Net.Sockets": "(,4.3.0]", - "System.Net.WebHeaderCollection": "(,4.3.0]", - "System.Net.WebSockets": "(,4.3.0]", - "System.Net.WebSockets.Client": "(,4.3.2]", - "System.Numerics.Vectors": "(,4.6.1]", - "System.ObjectModel": "(,4.3.0]", - "System.Reflection": "(,4.3.0]", - "System.Reflection.DispatchProxy": "(,4.5.1]", - "System.Reflection.Emit": "(,4.7.0]", - "System.Reflection.Emit.ILGeneration": "(,4.7.0]", - "System.Reflection.Emit.Lightweight": "(,4.7.0]", - "System.Reflection.Extensions": "(,4.3.0]", - "System.Reflection.Primitives": "(,4.3.0]", - "System.Resources.Reader": "(,4.3.0]", - "System.Resources.ResourceManager": "(,4.3.0]", - "System.Resources.Writer": "(,4.3.0]", - "System.Runtime": "(,4.3.1]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.0]", - "System.Runtime.Extensions": "(,4.3.1]", - "System.Runtime.Handles": "(,4.3.0]", - "System.Runtime.InteropServices": "(,4.3.0]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.0]", - "System.Runtime.Numerics": "(,4.3.0]", - "System.Runtime.Serialization.Formatters": "(,4.3.0]", - "System.Runtime.Serialization.Json": "(,4.3.0]", - "System.Runtime.Serialization.Primitives": "(,4.3.0]", - "System.Runtime.Serialization.Xml": "(,4.3.0]", - "System.Security.Claims": "(,4.3.0]", - "System.Security.Cryptography.Algorithms": "(,4.3.1]", - "System.Security.Cryptography.Csp": "(,4.3.0]", - "System.Security.Cryptography.Encoding": "(,4.3.0]", - "System.Security.Cryptography.Primitives": "(,4.3.0]", - "System.Security.Cryptography.X509Certificates": "(,4.3.2]", - "System.Security.Principal": "(,4.3.0]", - "System.Security.SecureString": "(,4.3.0]", - "System.Text.Encoding": "(,4.3.0]", - "System.Text.Encoding.Extensions": "(,4.3.0]", - "System.Text.RegularExpressions": "(,4.3.0]", - "System.Threading": "(,4.3.0]", - "System.Threading.Overlapped": "(,4.3.0]", - "System.Threading.Tasks": "(,4.3.0]", - "System.Threading.Tasks.Extensions": "(,4.6.3]", - "System.Threading.Tasks.Parallel": "(,4.3.0]", - "System.Threading.Thread": "(,4.3.0]", - "System.Threading.ThreadPool": "(,4.3.0]", - "System.Threading.Timer": "(,4.3.0]", - "System.ValueTuple": "(,4.6.1]", - "System.Xml.ReaderWriter": "(,4.3.1]", - "System.Xml.XDocument": "(,4.3.0]", - "System.Xml.XmlDocument": "(,4.3.0]", - "System.Xml.XmlSerializer": "(,4.3.0]", - "System.Xml.XPath": "(,4.3.0]", - "System.Xml.XPath.XDocument": "(,4.3.0]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.props b/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.props deleted file mode 100644 index 082e51e..0000000 --- a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.props +++ /dev/null @@ -1,40 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\sfree\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - - - - - - - - - - - C:\Users\sfree\.nuget\packages\microsoft.sourcelink.common\10.0.201 - C:\Users\sfree\.nuget\packages\microsoft.build.tasks.git\10.0.201 - C:\Users\sfree\.nuget\packages\microsoft.sourcelink.gitea\10.0.201 - C:\Users\sfree\.nuget\packages\microsoft.net.illink.tasks\10.0.5 - - - C:\Users\sfree\.nuget\packages\microsoft.sourcelink.common\10.0.201 - C:\Users\sfree\.nuget\packages\microsoft.build.tasks.git\10.0.201 - C:\Users\sfree\.nuget\packages\microsoft.sourcelink.gitea\10.0.201 - - \ No newline at end of file diff --git a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.targets b/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.targets deleted file mode 100644 index c7b8d15..0000000 --- a/src/StevanFreeborn.Options/obj/StevanFreeborn.Options.csproj.nuget.g.targets +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/StevanFreeborn.Options/obj/project.assets.json b/src/StevanFreeborn.Options/obj/project.assets.json deleted file mode 100644 index d1cfd1b..0000000 --- a/src/StevanFreeborn.Options/obj/project.assets.json +++ /dev/null @@ -1,884 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETStandard,Version=v2.1": { - "Microsoft.Build.Tasks.Git/10.0.201": { - "type": "package", - "dependencies": { - "System.IO.Hashing": "10.0.5" - }, - "build": { - "buildTransitive/Microsoft.Build.Tasks.Git.props": {}, - "buildTransitive/Microsoft.Build.Tasks.Git.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Build.Tasks.Git.props": {}, - "buildMultiTargeting/Microsoft.Build.Tasks.Git.targets": {} - } - }, - "Microsoft.SourceLink.Common/10.0.201": { - "type": "package", - "build": { - "buildTransitive/Microsoft.SourceLink.Common.props": {}, - "buildTransitive/Microsoft.SourceLink.Common.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.SourceLink.Common.props": {}, - "buildMultiTargeting/Microsoft.SourceLink.Common.targets": {} - } - }, - "Microsoft.SourceLink.Gitea/10.0.201": { - "type": "package", - "dependencies": { - "Microsoft.Build.Tasks.Git": "10.0.201", - "Microsoft.SourceLink.Common": "10.0.201", - "System.IO.Hashing": "10.0.5" - }, - "build": { - "build/Microsoft.SourceLink.Gitea.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.SourceLink.Gitea.targets": {} - } - }, - "System.IO.Hashing/10.0.5": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.IO.Hashing.dll": { - "related": ".xml" - } - } - } - }, - "net10.0": { - "Microsoft.Build.Tasks.Git/10.0.201": { - "type": "package", - "dependencies": { - "System.IO.Hashing": "10.0.5" - }, - "build": { - "buildTransitive/Microsoft.Build.Tasks.Git.props": {}, - "buildTransitive/Microsoft.Build.Tasks.Git.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Build.Tasks.Git.props": {}, - "buildMultiTargeting/Microsoft.Build.Tasks.Git.targets": {} - } - }, - "Microsoft.NET.ILLink.Tasks/10.0.5": { - "type": "package", - "build": { - "build/Microsoft.NET.ILLink.Tasks.props": {} - } - }, - "Microsoft.SourceLink.Common/10.0.201": { - "type": "package", - "build": { - "buildTransitive/Microsoft.SourceLink.Common.props": {}, - "buildTransitive/Microsoft.SourceLink.Common.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.SourceLink.Common.props": {}, - "buildMultiTargeting/Microsoft.SourceLink.Common.targets": {} - } - }, - "Microsoft.SourceLink.Gitea/10.0.201": { - "type": "package", - "dependencies": { - "Microsoft.Build.Tasks.Git": "10.0.201", - "Microsoft.SourceLink.Common": "10.0.201", - "System.IO.Hashing": "10.0.5" - }, - "build": { - "build/Microsoft.SourceLink.Gitea.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.SourceLink.Gitea.targets": {} - } - }, - "System.IO.Hashing/10.0.5": { - "type": "package", - "compile": { - "lib/net10.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - } - } - }, - "libraries": { - "Microsoft.Build.Tasks.Git/10.0.201": { - "sha512": "DMYBnrFZvLnBKn14VavEuuIr31CY6YY2i2L9P8DorS/Qp6ifRR8ZPLdJCFLFfjikNq8DykbYyLd/RP6lSqHcWw==", - "type": "package", - "path": "microsoft.build.tasks.git/10.0.201", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.txt", - "build/Microsoft.Build.Tasks.Git.props", - "build/Microsoft.Build.Tasks.Git.targets", - "buildMultiTargeting/Microsoft.Build.Tasks.Git.props", - "buildMultiTargeting/Microsoft.Build.Tasks.Git.targets", - "buildTransitive/Microsoft.Build.Tasks.Git.props", - "buildTransitive/Microsoft.Build.Tasks.Git.targets", - "microsoft.build.tasks.git.10.0.201.nupkg.sha512", - "microsoft.build.tasks.git.nuspec", - "tools/net/Microsoft.Build.Tasks.Git.deps.json", - "tools/net/Microsoft.Build.Tasks.Git.dll", - "tools/net/Microsoft.Build.Tasks.Git.pdb", - "tools/net/System.IO.Hashing.dll", - "tools/net/cs/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/de/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/es/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/fr/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/it/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/ja/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/ko/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/pl/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/pt-BR/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/ru/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/tr/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/zh-Hans/Microsoft.Build.Tasks.Git.resources.dll", - "tools/net/zh-Hant/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/Microsoft.Build.Tasks.Git.dll", - "tools/netframework/Microsoft.Build.Tasks.Git.dll.config", - "tools/netframework/Microsoft.Build.Tasks.Git.pdb", - "tools/netframework/System.Buffers.dll", - "tools/netframework/System.IO.Hashing.dll", - "tools/netframework/System.Memory.dll", - "tools/netframework/System.Numerics.Vectors.dll", - "tools/netframework/System.Runtime.CompilerServices.Unsafe.dll", - "tools/netframework/cs/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/de/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/es/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/fr/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/it/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/ja/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/ko/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/pl/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/pt-BR/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/ru/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/tr/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/zh-Hans/Microsoft.Build.Tasks.Git.resources.dll", - "tools/netframework/zh-Hant/Microsoft.Build.Tasks.Git.resources.dll" - ] - }, - "Microsoft.NET.ILLink.Tasks/10.0.5": { - "sha512": "A+5ZuQ0f449tM+MQrhf6R9ZX7lYpjk/ODEwLYKrnF6111rtARx8fVsm4YznUnQiKnnXfaXNBqgxmil6RW3L3SA==", - "type": "package", - "path": "microsoft.net.illink.tasks/10.0.5", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "Sdk/Sdk.props", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll", - "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll", - "build/Microsoft.NET.ILLink.Analyzers.props", - "build/Microsoft.NET.ILLink.Tasks.props", - "build/Microsoft.NET.ILLink.targets", - "microsoft.net.illink.tasks.10.0.5.nupkg.sha512", - "microsoft.net.illink.tasks.nuspec", - "tools/net/ILLink.Tasks.deps.json", - "tools/net/ILLink.Tasks.dll", - "tools/net/Mono.Cecil.Mdb.dll", - "tools/net/Mono.Cecil.Pdb.dll", - "tools/net/Mono.Cecil.Rocks.dll", - "tools/net/Mono.Cecil.dll", - "tools/net/Sdk/Sdk.props", - "tools/net/build/Microsoft.NET.ILLink.Analyzers.props", - "tools/net/build/Microsoft.NET.ILLink.Tasks.props", - "tools/net/build/Microsoft.NET.ILLink.targets", - "tools/net/illink.deps.json", - "tools/net/illink.dll", - "tools/net/illink.runtimeconfig.json", - "tools/netframework/ILLink.Tasks.dll", - "tools/netframework/ILLink.Tasks.dll.config", - "tools/netframework/Mono.Cecil.Mdb.dll", - "tools/netframework/Mono.Cecil.Pdb.dll", - "tools/netframework/Mono.Cecil.Rocks.dll", - "tools/netframework/Mono.Cecil.dll", - "tools/netframework/Sdk/Sdk.props", - "tools/netframework/System.Buffers.dll", - "tools/netframework/System.Collections.Immutable.dll", - "tools/netframework/System.Memory.dll", - "tools/netframework/System.Numerics.Vectors.dll", - "tools/netframework/System.Reflection.Metadata.dll", - "tools/netframework/System.Runtime.CompilerServices.Unsafe.dll", - "tools/netframework/build/Microsoft.NET.ILLink.Analyzers.props", - "tools/netframework/build/Microsoft.NET.ILLink.Tasks.props", - "tools/netframework/build/Microsoft.NET.ILLink.targets", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.SourceLink.Common/10.0.201": { - "sha512": "QbBYhkjgL6rCnBfDbzsAJLlsad13TlBHqYCFDIw56OO2g6ix+9RsmY8uxiQGdWwFKbZXaXyAA6jDCzFYVGCZDw==", - "type": "package", - "path": "microsoft.sourcelink.common/10.0.201", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.txt", - "build/InitializeSourceControlInformation.targets", - "build/Microsoft.SourceLink.Common.props", - "build/Microsoft.SourceLink.Common.targets", - "buildMultiTargeting/Microsoft.SourceLink.Common.props", - "buildMultiTargeting/Microsoft.SourceLink.Common.targets", - "buildTransitive/Microsoft.SourceLink.Common.props", - "buildTransitive/Microsoft.SourceLink.Common.targets", - "microsoft.sourcelink.common.10.0.201.nupkg.sha512", - "microsoft.sourcelink.common.nuspec", - "tools/net/Microsoft.SourceLink.Common.deps.json", - "tools/net/Microsoft.SourceLink.Common.dll", - "tools/net/Microsoft.SourceLink.Common.pdb", - "tools/net/cs/Microsoft.SourceLink.Common.resources.dll", - "tools/net/de/Microsoft.SourceLink.Common.resources.dll", - "tools/net/es/Microsoft.SourceLink.Common.resources.dll", - "tools/net/fr/Microsoft.SourceLink.Common.resources.dll", - "tools/net/it/Microsoft.SourceLink.Common.resources.dll", - "tools/net/ja/Microsoft.SourceLink.Common.resources.dll", - "tools/net/ko/Microsoft.SourceLink.Common.resources.dll", - "tools/net/pl/Microsoft.SourceLink.Common.resources.dll", - "tools/net/pt-BR/Microsoft.SourceLink.Common.resources.dll", - "tools/net/ru/Microsoft.SourceLink.Common.resources.dll", - "tools/net/tr/Microsoft.SourceLink.Common.resources.dll", - "tools/net/zh-Hans/Microsoft.SourceLink.Common.resources.dll", - "tools/net/zh-Hant/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/Microsoft.SourceLink.Common.dll", - "tools/netframework/Microsoft.SourceLink.Common.dll.config", - "tools/netframework/Microsoft.SourceLink.Common.pdb", - "tools/netframework/cs/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/de/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/es/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/fr/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/it/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/ja/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/ko/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/pl/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/pt-BR/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/ru/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/tr/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/zh-Hans/Microsoft.SourceLink.Common.resources.dll", - "tools/netframework/zh-Hant/Microsoft.SourceLink.Common.resources.dll" - ] - }, - "Microsoft.SourceLink.Gitea/10.0.201": { - "sha512": "F8hUc8x+9PzpnT3LAyUHHOAGPzGe0W9cTeR4INEeu43bah+xKEJOAgN4fHA/YkrgMp1z/0wAaIaIQWrIdt2E3A==", - "type": "package", - "path": "microsoft.sourcelink.gitea/10.0.201", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.txt", - "build/Microsoft.SourceLink.Gitea.targets", - "buildMultiTargeting/Microsoft.SourceLink.Gitea.targets", - "microsoft.sourcelink.gitea.10.0.201.nupkg.sha512", - "microsoft.sourcelink.gitea.nuspec", - "tools/net/Microsoft.SourceLink.Gitea.deps.json", - "tools/net/Microsoft.SourceLink.Gitea.dll", - "tools/net/Microsoft.SourceLink.Gitea.pdb", - "tools/net/System.IO.Hashing.dll", - "tools/net/cs/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/de/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/es/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/fr/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/it/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/ja/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/ko/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/pl/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/pt-BR/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/ru/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/tr/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/zh-Hans/Microsoft.SourceLink.Gitea.resources.dll", - "tools/net/zh-Hant/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/Microsoft.SourceLink.Gitea.dll", - "tools/netframework/Microsoft.SourceLink.Gitea.dll.config", - "tools/netframework/Microsoft.SourceLink.Gitea.pdb", - "tools/netframework/System.Buffers.dll", - "tools/netframework/System.IO.Hashing.dll", - "tools/netframework/System.Memory.dll", - "tools/netframework/System.Numerics.Vectors.dll", - "tools/netframework/System.Runtime.CompilerServices.Unsafe.dll", - "tools/netframework/cs/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/de/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/es/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/fr/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/it/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/ja/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/ko/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/pl/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/pt-BR/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/ru/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/tr/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/zh-Hans/Microsoft.SourceLink.Gitea.resources.dll", - "tools/netframework/zh-Hant/Microsoft.SourceLink.Gitea.resources.dll" - ] - }, - "System.IO.Hashing/10.0.5": { - "sha512": "8IBJWcCT9+e4Bmevm4T7+fQEiAh133KGiz4oiVTgJckd3Q76OFdR1falgn9lpz7+C4HJvogCDJeAa2QmvbeVtg==", - "type": "package", - "path": "system.io.hashing/10.0.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Hashing.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", - "lib/net10.0/System.IO.Hashing.dll", - "lib/net10.0/System.IO.Hashing.xml", - "lib/net462/System.IO.Hashing.dll", - "lib/net462/System.IO.Hashing.xml", - "lib/net8.0/System.IO.Hashing.dll", - "lib/net8.0/System.IO.Hashing.xml", - "lib/net9.0/System.IO.Hashing.dll", - "lib/net9.0/System.IO.Hashing.xml", - "lib/netstandard2.0/System.IO.Hashing.dll", - "lib/netstandard2.0/System.IO.Hashing.xml", - "system.io.hashing.10.0.5.nupkg.sha512", - "system.io.hashing.nuspec", - "useSharedDesignerContext.txt" - ] - } - }, - "projectFileDependencyGroups": { - ".NETStandard,Version=v2.1": [ - "Microsoft.SourceLink.Gitea >= 10.0.201" - ], - "net10.0": [ - "Microsoft.NET.ILLink.Tasks >= 10.0.5", - "Microsoft.SourceLink.Gitea >= 10.0.201" - ] - }, - "packageFolders": { - "C:\\Users\\sfree\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "0.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "projectName": "StevanFreeborn.Options", - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "packagesPath": "C:\\Users\\sfree\\.nuget\\packages\\", - "outputPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\obj\\", - "projectStyle": "PackageReference", - "crossTargeting": true, - "centralPackageVersionsManagementEnabled": true, - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\sfree\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0", - "netstandard2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.200" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[10.0.5, )", - "autoReferenced": true - }, - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "dependencies": { - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "NETStandard.Library": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201\\RuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.Win32.Primitives": "(,4.3.0]", - "System.AppContext": "(,4.3.0]", - "System.Buffers": "(,4.6.1]", - "System.Collections": "(,4.3.0]", - "System.Collections.Concurrent": "(,4.3.0]", - "System.Collections.NonGeneric": "(,4.3.0]", - "System.Collections.Specialized": "(,4.3.0]", - "System.ComponentModel": "(,4.3.0]", - "System.ComponentModel.EventBasedAsync": "(,4.3.0]", - "System.ComponentModel.Primitives": "(,4.3.0]", - "System.ComponentModel.TypeConverter": "(,4.3.0]", - "System.Console": "(,4.3.1]", - "System.Data.Common": "(,4.3.0]", - "System.Diagnostics.Contracts": "(,4.3.0]", - "System.Diagnostics.Debug": "(,4.3.0]", - "System.Diagnostics.FileVersionInfo": "(,4.3.0]", - "System.Diagnostics.Process": "(,4.3.0]", - "System.Diagnostics.StackTrace": "(,4.3.0]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.0]", - "System.Diagnostics.Tools": "(,4.3.0]", - "System.Diagnostics.TraceSource": "(,4.3.0]", - "System.Diagnostics.Tracing": "(,4.3.0]", - "System.Drawing.Primitives": "(,4.3.0]", - "System.Dynamic.Runtime": "(,4.3.0]", - "System.Globalization": "(,4.3.0]", - "System.Globalization.Calendars": "(,4.3.0]", - "System.Globalization.Extensions": "(,4.3.0]", - "System.IO": "(,4.3.0]", - "System.IO.Compression": "(,4.3.0]", - "System.IO.Compression.ZipFile": "(,4.3.0]", - "System.IO.FileSystem": "(,4.3.0]", - "System.IO.FileSystem.DriveInfo": "(,4.3.1]", - "System.IO.FileSystem.Primitives": "(,4.3.0]", - "System.IO.FileSystem.Watcher": "(,4.3.0]", - "System.IO.IsolatedStorage": "(,4.3.0]", - "System.IO.MemoryMappedFiles": "(,4.3.0]", - "System.IO.Pipes": "(,4.3.0]", - "System.IO.UnmanagedMemoryStream": "(,4.3.0]", - "System.Linq": "(,4.3.0]", - "System.Linq.Expressions": "(,4.3.0]", - "System.Linq.Parallel": "(,4.3.0]", - "System.Linq.Queryable": "(,4.3.0]", - "System.Memory": "(,4.6.3]", - "System.Net.Http": "(,4.3.4]", - "System.Net.NameResolution": "(,4.3.0]", - "System.Net.NetworkInformation": "(,4.3.0]", - "System.Net.Ping": "(,4.3.0]", - "System.Net.Primitives": "(,4.3.1]", - "System.Net.Requests": "(,4.3.0]", - "System.Net.Security": "(,4.3.2]", - "System.Net.Sockets": "(,4.3.0]", - "System.Net.WebHeaderCollection": "(,4.3.0]", - "System.Net.WebSockets": "(,4.3.0]", - "System.Net.WebSockets.Client": "(,4.3.2]", - "System.Numerics.Vectors": "(,4.6.1]", - "System.ObjectModel": "(,4.3.0]", - "System.Reflection": "(,4.3.0]", - "System.Reflection.DispatchProxy": "(,4.5.1]", - "System.Reflection.Emit": "(,4.7.0]", - "System.Reflection.Emit.ILGeneration": "(,4.7.0]", - "System.Reflection.Emit.Lightweight": "(,4.7.0]", - "System.Reflection.Extensions": "(,4.3.0]", - "System.Reflection.Primitives": "(,4.3.0]", - "System.Resources.Reader": "(,4.3.0]", - "System.Resources.ResourceManager": "(,4.3.0]", - "System.Resources.Writer": "(,4.3.0]", - "System.Runtime": "(,4.3.1]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.0]", - "System.Runtime.Extensions": "(,4.3.1]", - "System.Runtime.Handles": "(,4.3.0]", - "System.Runtime.InteropServices": "(,4.3.0]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.0]", - "System.Runtime.Numerics": "(,4.3.0]", - "System.Runtime.Serialization.Formatters": "(,4.3.0]", - "System.Runtime.Serialization.Json": "(,4.3.0]", - "System.Runtime.Serialization.Primitives": "(,4.3.0]", - "System.Runtime.Serialization.Xml": "(,4.3.0]", - "System.Security.Claims": "(,4.3.0]", - "System.Security.Cryptography.Algorithms": "(,4.3.1]", - "System.Security.Cryptography.Csp": "(,4.3.0]", - "System.Security.Cryptography.Encoding": "(,4.3.0]", - "System.Security.Cryptography.Primitives": "(,4.3.0]", - "System.Security.Cryptography.X509Certificates": "(,4.3.2]", - "System.Security.Principal": "(,4.3.0]", - "System.Security.SecureString": "(,4.3.0]", - "System.Text.Encoding": "(,4.3.0]", - "System.Text.Encoding.Extensions": "(,4.3.0]", - "System.Text.RegularExpressions": "(,4.3.0]", - "System.Threading": "(,4.3.0]", - "System.Threading.Overlapped": "(,4.3.0]", - "System.Threading.Tasks": "(,4.3.0]", - "System.Threading.Tasks.Extensions": "(,4.6.3]", - "System.Threading.Tasks.Parallel": "(,4.3.0]", - "System.Threading.Thread": "(,4.3.0]", - "System.Threading.ThreadPool": "(,4.3.0]", - "System.Threading.Timer": "(,4.3.0]", - "System.ValueTuple": "(,4.6.1]", - "System.Xml.ReaderWriter": "(,4.3.1]", - "System.Xml.XDocument": "(,4.3.0]", - "System.Xml.XmlDocument": "(,4.3.0]", - "System.Xml.XmlSerializer": "(,4.3.0]", - "System.Xml.XPath": "(,4.3.0]", - "System.Xml.XPath.XDocument": "(,4.3.0]" - } - } - } - } -} \ No newline at end of file diff --git a/src/StevanFreeborn.Options/obj/project.nuget.cache b/src/StevanFreeborn.Options/obj/project.nuget.cache deleted file mode 100644 index 79bd89e..0000000 --- a/src/StevanFreeborn.Options/obj/project.nuget.cache +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "sqs8WMAlK3E=", - "success": true, - "projectFilePath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "expectedPackageFiles": [ - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.build.tasks.git\\10.0.201\\microsoft.build.tasks.git.10.0.201.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.net.illink.tasks\\10.0.5\\microsoft.net.illink.tasks.10.0.5.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.sourcelink.common\\10.0.201\\microsoft.sourcelink.common.10.0.201.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.sourcelink.gitea\\10.0.201\\microsoft.sourcelink.gitea.10.0.201.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\system.io.hashing\\10.0.5\\system.io.hashing.10.0.5.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_StevanFreeborn.Options.Tests b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_StevanFreeborn.Options.Tests deleted file mode 100644 index 90b4715..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/.msCoverageExtensionSourceRootsMapping_StevanFreeborn.Options.Tests and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/EnumerableAsyncProcessor.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/EnumerableAsyncProcessor.dll deleted file mode 100644 index cf0b914..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/EnumerableAsyncProcessor.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Log/log_260330193749192.diag b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Log/log_260330193749192.diag deleted file mode 100644 index 41fbb38..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Log/log_260330193749192.diag +++ /dev/null @@ -1,14 +0,0 @@ -2026-03-30T19:37:49.1968784+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Version: 2.1.0+26fb0d3e539b7900114443db5edf1e0c4e9d4b82 -2026-03-30T19:37:49.2082545+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Logging mode: asynchronous -2026-03-30T19:37:49.2087577+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Logging level: Information -2026-03-30T19:37:49.2087607+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION CreateBuilderAsync entry time: 19:37:49.183 -2026-03-30T19:37:49.2088184+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION PID: 49068 -2026-03-30T19:37:49.2088369+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Runtime information: win-x64 - .NET 10.0.5 -2026-03-30T19:37:49.2088489+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Runtime location: C:\Program Files\dotnet\shared\Microsoft.NETCore.App\10.0.5\System.Private.CoreLib.dll -2026-03-30T19:37:49.2088539+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION IsDynamicCodeSupported: True -2026-03-30T19:37:49.2089049+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Test module: C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.dll -2026-03-30T19:37:49.2089786+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION Command line arguments: '--server --diagnostic --diagnostic-verbosity Information --diagnostic-output-directory C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Log --client-port 51312' -2026-03-30T19:37:49.2094607+00:00 Microsoft.Testing.Platform.Builder.TestApplication INFORMATION TESTINGPLATFORM_DEFAULT_HANG_TIMEOUT: '' -2026-03-30T19:37:49.3949618+00:00 Microsoft.Testing.Platform.Hosts.TestHostBuilder INFORMATION Setting RegisterEnvironmentVariablesConfigurationSource: 'True' -2026-03-30T19:37:49.4030885+00:00 Microsoft.Testing.Platform.Hosts.TestHostBuilder INFORMATION Setting PlatformExitProcessOnUnhandledException: 'False', config file: False environment variable: -2026-03-30T19:37:49.5515838+00:00 Microsoft.Testing.Platform.Requests.TestHostTestFrameworkInvoker INFORMATION Test framework UID: 'TUnitExtension' Version: '1.23.7.0' DisplayName: 'TUnit' Description: 'TUnit Framework for Microsoft Testing Platform' diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.ApplicationInsights.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 0fc9839..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Core.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Core.dll deleted file mode 100644 index f8b510f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Core.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.Core.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.Core.dll deleted file mode 100644 index 22b1c52..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.Core.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.dll deleted file mode 100644 index f553c8a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Instrumentation.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Interprocess.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Interprocess.dll deleted file mode 100644 index 3d355f0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.CodeCoverage.Interprocess.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.DiaSymReader.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.DiaSymReader.dll deleted file mode 100644 index b189d56..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index 8905537..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.CodeCoverage.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.CodeCoverage.dll deleted file mode 100644 index 273574e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.CodeCoverage.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.MSBuild.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.MSBuild.dll deleted file mode 100644 index f1d0a4e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.MSBuild.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.Telemetry.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.Telemetry.dll deleted file mode 100644 index 4b0b171..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.Telemetry.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll deleted file mode 100644 index da02e6b..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.dll deleted file mode 100644 index ff936d4..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Extensions.TrxReport.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Platform.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Platform.dll deleted file mode 100644 index 61b06a0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.Testing.Platform.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index d392010..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Mdb.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Mdb.dll deleted file mode 100644 index f43e2de..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Mdb.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Pdb.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Pdb.dll deleted file mode 100644 index 712bf3a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Pdb.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Rocks.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Rocks.dll deleted file mode 100644 index cce8a72..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.Rocks.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.dll deleted file mode 100644 index 1477b8c..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/Mono.Cecil.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.deps.json b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.deps.json deleted file mode 100644 index 0190059..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.deps.json +++ /dev/null @@ -1,748 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "StevanFreeborn.Options.Tests/1.0.0": { - "dependencies": { - "StevanFreeborn.Options": "0.0.0", - "TUnit": "1.23.7" - }, - "runtime": { - "StevanFreeborn.Options.Tests.dll": {} - } - }, - "EnumerableAsyncProcessor/3.8.4": { - "runtime": { - "lib/net9.0/EnumerableAsyncProcessor.dll": { - "assemblyVersion": "3.8.4.0", - "fileVersion": "3.8.4.0" - } - } - }, - "Microsoft.ApplicationInsights/2.23.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.23.0.29", - "fileVersion": "2.23.0.29" - } - } - }, - "Microsoft.DiaSymReader/2.2.3": { - "runtime": { - "lib/net10.0/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "2.2.3.0", - "fileVersion": "2.200.326.7603" - } - } - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "8.0.0.2", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Testing.Extensions.CodeCoverage/18.5.2": { - "dependencies": { - "Microsoft.DiaSymReader": "2.2.3", - "Microsoft.Extensions.DependencyModel": "8.0.2", - "Microsoft.Testing.Platform": "2.1.0" - }, - "runtime": { - "lib/net8.0/Microsoft.CodeCoverage.Core.dll": { - "assemblyVersion": "18.5.2.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll": { - "assemblyVersion": "18.5.2.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll": { - "assemblyVersion": "18.5.2.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll": { - "assemblyVersion": "18.5.2.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll": { - "assemblyVersion": "18.5.2.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "18.500.226.15207" - }, - "lib/net8.0/Mono.Cecil.Mdb.dll": { - "assemblyVersion": "0.11.5.0", - "fileVersion": "0.11.5.0" - }, - "lib/net8.0/Mono.Cecil.Pdb.dll": { - "assemblyVersion": "0.11.5.0", - "fileVersion": "0.11.5.0" - }, - "lib/net8.0/Mono.Cecil.Rocks.dll": { - "assemblyVersion": "0.11.5.0", - "fileVersion": "0.11.5.0" - }, - "lib/net8.0/Mono.Cecil.dll": { - "assemblyVersion": "0.11.5.0", - "fileVersion": "0.11.5.0" - } - }, - "resources": { - "lib/net8.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "hu" - }, - "lib/net8.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "nl" - }, - "lib/net8.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pt-PT" - }, - "lib/net8.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "sv" - }, - "lib/net8.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "zh-Hant" - } - }, - "runtimeTargets": { - "runtimes/linux-musl-x64/native/Cov_x64.config": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libInstrumentationEngine.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/Cov_x64.config": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libCoverageInstrumentationMethod.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libInstrumentationEngine.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/Cov_x64.config": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libInstrumentationEngine.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/CodeCoverageMessages.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-arm64/native/Cov_arm64.config": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/Cov_x64.config": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/Cov_x86.config": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-arm64/native/covrun32.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-arm64/native/covrun64.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-arm64/native/covrunarm64.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-arm64/native/msdia140.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "14.50.35719.0" - }, - "runtimes/win-x64/native/CodeCoverageMessages.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x64/native/Cov_arm64.config": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/Cov_x64.config": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/Cov_x86.config": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x64/native/covrun32.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x64/native/covrun64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x64/native/covrunarm64.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x64/native/msdia140.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "14.50.35719.0" - }, - "runtimes/win-x86/native/CodeCoverageMessages.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x86/native/Cov_arm64.config": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/Cov_x64.config": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/Cov_x86.config": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "15.1.0.49995" - }, - "runtimes/win-x86/native/covrun32.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x86/native/covrun64.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x86/native/covrunarm64.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "18.2.26152.59847" - }, - "runtimes/win-x86/native/msdia140.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "14.50.35719.0" - } - } - }, - "Microsoft.Testing.Extensions.Telemetry/2.1.0": { - "dependencies": { - "Microsoft.ApplicationInsights": "2.23.0", - "Microsoft.Testing.Platform": "2.1.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.100.26.10311" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Testing.Extensions.TrxReport/2.1.0": { - "dependencies": { - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.1.0", - "Microsoft.Testing.Platform": "2.1.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.100.26.10311" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.0": { - "dependencies": { - "Microsoft.Testing.Platform": "2.1.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.100.26.10311" - } - } - }, - "Microsoft.Testing.Platform/2.1.0": { - "runtime": { - "lib/net9.0/Microsoft.Testing.Platform.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.100.26.10311" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Testing.Platform.MSBuild/2.1.0": { - "dependencies": { - "Microsoft.Testing.Platform": "2.1.0" - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.100.26.10311" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "TUnit/1.23.7": { - "dependencies": { - "Microsoft.Testing.Extensions.CodeCoverage": "18.5.2", - "Microsoft.Testing.Extensions.Telemetry": "2.1.0", - "Microsoft.Testing.Extensions.TrxReport": "2.1.0", - "TUnit.Assertions": "1.23.7", - "TUnit.Engine": "1.23.7" - }, - "runtime": { - "lib/net10.0/TUnit.dll": { - "assemblyVersion": "1.23.7.0", - "fileVersion": "1.23.7.0" - } - } - }, - "TUnit.Assertions/1.23.7": { - "runtime": { - "lib/net10.0/TUnit.Assertions.dll": { - "assemblyVersion": "1.23.7.0", - "fileVersion": "1.23.7.0" - } - } - }, - "TUnit.Core/1.23.7": { - "runtime": { - "lib/net10.0/TUnit.Core.dll": { - "assemblyVersion": "1.23.7.0", - "fileVersion": "1.23.7.0" - } - } - }, - "TUnit.Engine/1.23.7": { - "dependencies": { - "EnumerableAsyncProcessor": "3.8.4", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.1.0", - "Microsoft.Testing.Platform": "2.1.0", - "Microsoft.Testing.Platform.MSBuild": "2.1.0", - "TUnit.Core": "1.23.7" - }, - "runtime": { - "lib/net10.0/TUnit.Engine.dll": { - "assemblyVersion": "1.23.7.0", - "fileVersion": "1.23.7.0" - } - } - }, - "StevanFreeborn.Options/0.0.0": { - "runtime": { - "StevanFreeborn.Options.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.0.0.0" - } - } - } - } - }, - "libraries": { - "StevanFreeborn.Options.Tests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "EnumerableAsyncProcessor/3.8.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KlbpupRCz3Kf+P7gsiDvFXJ980i/9lfihMZFmmxIk0Gf6mopEjy74OTJZmdaKDQpE29eQDBnMZB5khyW3eugrg==", - "path": "enumerableasyncprocessor/3.8.4", - "hashPath": "enumerableasyncprocessor.3.8.4.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.23.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==", - "path": "microsoft.applicationinsights/2.23.0", - "hashPath": "microsoft.applicationinsights.2.23.0.nupkg.sha512" - }, - "Microsoft.DiaSymReader/2.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bhwzJfzyiJM0nXJyNB7Y9OfsEXyxLdDBHG99soIp5JjnPydwkOaBdRCtRtWgQh3noSLi2cSIZ/wpbHNNE9knxQ==", - "path": "microsoft.diasymreader/2.2.3", - "hashPath": "microsoft.diasymreader.2.2.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", - "path": "microsoft.extensions.dependencymodel/8.0.2", - "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" - }, - "Microsoft.Testing.Extensions.CodeCoverage/18.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UNcGLx9pVtlXF8MPDR8KDp+/OKKNIJjpzwRyZSt609TSGvaD8mtuQMb5GKZvhMucPp0a5Juvn3kxXDceQZWmAg==", - "path": "microsoft.testing.extensions.codecoverage/18.5.2", - "hashPath": "microsoft.testing.extensions.codecoverage.18.5.2.nupkg.sha512" - }, - "Microsoft.Testing.Extensions.Telemetry/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5TwgTx2u7k9Al/xbZ18QXq4Hdy2xewkVTI6K3sk+jY2ykqUkIKNuj7rFu3GOV5KnEUkevhw6eZcyZs77STHJIA==", - "path": "microsoft.testing.extensions.telemetry/2.1.0", - "hashPath": "microsoft.testing.extensions.telemetry.2.1.0.nupkg.sha512" - }, - "Microsoft.Testing.Extensions.TrxReport/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cXmP225WcMLLOSrW8xekaNhfzdBwXX3cbXbE5qSzmLbK0KZe3z8rAObKj70FWiPPPzm2W22x0ZW93gsmAfK6Mg==", - "path": "microsoft.testing.extensions.trxreport/2.1.0", - "hashPath": "microsoft.testing.extensions.trxreport.2.1.0.nupkg.sha512" - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D8xmIJYQFJ6D49Rx5/vPrkZZxb338Jkew+eSqZLBfBiWKw4QZKy3i1BOXiLfz0lOmaNErwDz/YWRojCdNl+B9Q==", - "path": "microsoft.testing.extensions.trxreport.abstractions/2.1.0", - "hashPath": "microsoft.testing.extensions.trxreport.abstractions.2.1.0.nupkg.sha512" - }, - "Microsoft.Testing.Platform/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aHkjNTGIA+Zbdw6RJgSFrbDrCjO0CgqpElqYcvkRSeUhBv2bKarnvU3ep786U7UqrPlArT/B7VmImRibJD0Zrg==", - "path": "microsoft.testing.platform/2.1.0", - "hashPath": "microsoft.testing.platform.2.1.0.nupkg.sha512" - }, - "Microsoft.Testing.Platform.MSBuild/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UpfPebXQtHGrWz21+YLHmJSm+5zsuPE9U9pfdCtoB+67g75fDmWlNgpkH2ZmdVhSwkjNIed9Icg8Iu63z2ei5Q==", - "path": "microsoft.testing.platform.msbuild/2.1.0", - "hashPath": "microsoft.testing.platform.msbuild.2.1.0.nupkg.sha512" - }, - "TUnit/1.23.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PVEu/QwlNe2413Qpfru4B7wixLTKGcjqxISKXqUCGAeEKQ84NHMvNVVnm5JKbpMsam2Sf79S6S2HaAIaXy7NYA==", - "path": "tunit/1.23.7", - "hashPath": "tunit.1.23.7.nupkg.sha512" - }, - "TUnit.Assertions/1.23.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eWCF4SVUxu4vEfJj8wZuE92ONv5lZdL/E3b3Y/axpM55BG0X4dRpvf0Hm80DNB9uJoBjdq9u/QMom2G1wsENgQ==", - "path": "tunit.assertions/1.23.7", - "hashPath": "tunit.assertions.1.23.7.nupkg.sha512" - }, - "TUnit.Core/1.23.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-035xcZ8Lf9y7FI93uvKTWqlwKxY2FBPZ00k0awur38iStXP9Vw3C+Hfz5hDHHryU+H8r0FiYYkqzGDannZ2G/g==", - "path": "tunit.core/1.23.7", - "hashPath": "tunit.core.1.23.7.nupkg.sha512" - }, - "TUnit.Engine/1.23.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yek0/Lg0jncyu5mHfLRZyBFNVEbWIofpKcWP5VpscY46IzOeqqgPSURhkg3t52zEbCEPyPOmSZrcDTK2undk7g==", - "path": "tunit.engine/1.23.7", - "hashPath": "tunit.engine.1.23.7.nupkg.sha512" - }, - "StevanFreeborn.Options/0.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.dll deleted file mode 100644 index 699b9dd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.exe b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.exe deleted file mode 100644 index 81334d3..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.exe and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.pdb b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.pdb deleted file mode 100644 index a701eef..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.pdb and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.runtimeconfig.json b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.runtimeconfig.json deleted file mode 100644 index 01e4519..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.Tests.runtimeconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - "configProperties": { - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.dll deleted file mode 100644 index abfcab8..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.pdb b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.pdb deleted file mode 100644 index 59d7c53..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.pdb and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.xml b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.xml deleted file mode 100644 index a1e399e..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/StevanFreeborn.Options.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - StevanFreeborn.Options - - - - - Provides factory methods for creating . - - - - - Creates an option with the specified value. - - The type of the value. - The value. - An with the specified value. - - - - Creates an empty option. - - The type of the value. - An empty . - - - - Creates an option from the specified value, returning None if the value is null. - - The type of the value. - The value. - An with the value if not null, otherwise None. - - - - Converts a value to an . - - The type of the value. - The value. - An . - - - - Represents an optional value that may or may not be present. - - The type of the value. - - - - Gets a value indicating whether the option has a value. - - - - - Gets a value indicating whether the option is empty. - - - - - Gets the value of the option. - - Thrown when accessing Value on a None option. - - - - Implicitly converts a value to an . - - The value to convert. - - - - Deconstructs the option into its components. - - Indicates whether the option has a value. - The value of the option. - - - - Maps the value to a new type if the option has a value. - - The new type. - The function to map the value. - A new with the mapped value if Some, otherwise None. - Thrown when mapper is null. - - - - Binds to a new option if the current option has a value. - - The new option type. - The function to bind to on Some. - The result of the binder function if Some, otherwise None. - Thrown when binder is null. - - - - Matches the option and returns a value based on whether it has a value. - - The type of the result. - The function to execute on Some. - The function to execute on None. - The result of the appropriate function. - Thrown when onSome or onNone is null. - - - - Matches the option and executes the appropriate action. - - The action to execute on Some. - The action to execute on None. - Thrown when onSome or onNone is null. - - - - Filters the option based on the specified predicate. - - The predicate to filter with. - The current option if Some and the predicate is met, otherwise None. - Thrown when predicate is null. - - - - Gets the value of the option if Some, otherwise the specified default value. - - The default value. - The value if Some, otherwise the default value. - - - - Gets the value of the option if Some, otherwise the result of the specified factory function. - - The factory function to provide the default value. - The value if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Returns the current option if Some, otherwise the result of the specified factory function. - - The factory function to provide the fallback option. - The current option if Some, otherwise the result of the factory function. - Thrown when factory is null. - - - - Provides async extension methods for . - - - - - Maps the value to a new type asynchronously if the option has a value. - - The type of the value. - The new type. - The option. - The async function to map the value. - A task containing a new with the mapped value if Some, otherwise None. - Thrown when option or mapper is null. - - - - Binds to a new async result if the current option has a value. - - The type of the value. - The new result type. - The option. - The async function to bind to on Some. - A task containing the result of the binder function if Some, otherwise None. - Thrown when option or binder is null. - - - - Matches the option asynchronously and returns a value based on whether it has a value. - - The type of the value. - The type of the result. - The option. - The async function to execute on Some. - The async function to execute on None. - A task containing the result of the appropriate function. - Thrown when option, onSome, or onNone is null. - - - - Filters the option asynchronously based on the specified predicate. - - The type of the value. - The option. - The async predicate to filter with. - A task containing the current option if Some and the predicate is met, otherwise None. - Thrown when option or predicate is null. - - - - Returns the current option if Some, otherwise the result of the specified async factory function. - - The type of the value. - The option. - The async factory function to provide the fallback option. - A task containing the current option if Some, otherwise the result of the factory function. - Thrown when option or factory is null. - - - diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Assertions.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Assertions.dll deleted file mode 100644 index 20e8a08..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Assertions.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Core.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Core.dll deleted file mode 100644 index 4db0b3e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Core.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Engine.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Engine.dll deleted file mode 100644 index 3f0edd5..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.Engine.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.dll deleted file mode 100644 index 4bf661f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/TUnit.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index f5b36ec..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index afce564..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 579a4dd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 15fb410..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 7757d33..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/cs/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 5aa4e14..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 5b0519f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 28d3154..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index f085588..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 8209a98..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/de/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index dccbec6..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index ff5ea83..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index a6af123..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index c2724ff..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 6228f98..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/es/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 512bbb3..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 8ad02cc..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index cfeecfa..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 24a6aaa..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 2075d71..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/fr/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 0273cf4..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index ff1afc3..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 4a4aec9..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 8ab42c0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index d14e923..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 0ce5514..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/it/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 6be630a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index c22c79a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 4511458..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 64bb6cb..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 2fe0ccb..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ja/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index d695a8c..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 3f67f7c..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index d46480e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 3dd1dcb..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index dc38f7e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ko/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index dde3b75..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 31fa8af..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 9280c48..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 7416c3a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 375c031..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index cae0dc5..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pl/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 3238754..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index bf69205..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index c1dd800..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 085341b..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 81d5e18..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-BR/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 53d2dc8..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 1eb4b5c..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 28a4e4b..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index ae9a160..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 9e277ea..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 48b4dbe..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/ru/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/Cov_x64.config deleted file mode 100644 index 25a3f34..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Code Coverage Instrumentation Method - Instrumentation method to support Microsoft Code Coverage - libCoverageInstrumentationMethod.so - {F02C3E96-F6FD-4552-9544-9F06BE6E5A0B} - 11 - - diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so deleted file mode 100644 index 3a06c34..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libInstrumentationEngine.so b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libInstrumentationEngine.so deleted file mode 100644 index d63f7b6..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libInstrumentationEngine.so and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/Cov_x64.config deleted file mode 100644 index 25a3f34..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Code Coverage Instrumentation Method - Instrumentation method to support Microsoft Code Coverage - libCoverageInstrumentationMethod.so - {F02C3E96-F6FD-4552-9544-9F06BE6E5A0B} - 11 - - diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libCoverageInstrumentationMethod.so b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libCoverageInstrumentationMethod.so deleted file mode 100644 index 66994b0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libCoverageInstrumentationMethod.so and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libInstrumentationEngine.so b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libInstrumentationEngine.so deleted file mode 100644 index b815634..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/linux-x64/native/libInstrumentationEngine.so and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/Cov_x64.config deleted file mode 100644 index 3bb9870..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Code Coverage Instrumentation Method - Instrumentation method to support Microsoft Code Coverage - libCoverageInstrumentationMethod.dylib - {F02C3E96-F6FD-4552-9544-9F06BE6E5A0B} - 11 - - diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib deleted file mode 100644 index 6be5b80..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libInstrumentationEngine.dylib b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libInstrumentationEngine.dylib deleted file mode 100644 index ef13fb7..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/osx-x64/native/libInstrumentationEngine.dylib and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/CodeCoverageMessages.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/CodeCoverageMessages.dll deleted file mode 100644 index bc7b1a0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/CodeCoverageMessages.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_arm64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_arm64.config deleted file mode 100644 index 5651aca..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_arm64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrunarm64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x64.config deleted file mode 100644 index 6a4c746..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x86.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x86.config deleted file mode 100644 index fcb4ecf..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/Cov_x86.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun32.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll deleted file mode 100644 index 3673aef..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll deleted file mode 100644 index c15e056..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll deleted file mode 100644 index 2f207bd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun32.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun32.dll deleted file mode 100644 index b05591a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun32.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun64.dll deleted file mode 100644 index ef08da2..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrun64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrunarm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrunarm64.dll deleted file mode 100644 index 8171b44..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/covrunarm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/msdia140.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/msdia140.dll deleted file mode 100644 index 01bae84..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-arm64/native/msdia140.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/CodeCoverageMessages.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/CodeCoverageMessages.dll deleted file mode 100644 index bc7b1a0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/CodeCoverageMessages.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_arm64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_arm64.config deleted file mode 100644 index 5651aca..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_arm64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrunarm64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x64.config deleted file mode 100644 index 6a4c746..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x86.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x86.config deleted file mode 100644 index fcb4ecf..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/Cov_x86.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun32.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll deleted file mode 100644 index 3673aef..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll deleted file mode 100644 index c15e056..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll deleted file mode 100644 index 2f207bd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun32.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun32.dll deleted file mode 100644 index b05591a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun32.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun64.dll deleted file mode 100644 index ef08da2..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrun64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrunarm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrunarm64.dll deleted file mode 100644 index 8171b44..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/covrunarm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/msdia140.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/msdia140.dll deleted file mode 100644 index 3b7a32e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x64/native/msdia140.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/CodeCoverageMessages.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/CodeCoverageMessages.dll deleted file mode 100644 index bc7b1a0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/CodeCoverageMessages.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_arm64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_arm64.config deleted file mode 100644 index 5651aca..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_arm64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrunarm64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x64.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x64.config deleted file mode 100644 index 6a4c746..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x64.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun64.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x86.config b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x86.config deleted file mode 100644 index fcb4ecf..0000000 --- a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/Cov_x86.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - Vanguard Instrumentation Method - Instrumentation method to support Code Coverage - covrun32.dll - {2A1F2A34-8192-44AC-A9D8-4FCC03DCBAA8} - 99 - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll deleted file mode 100644 index 3673aef..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll deleted file mode 100644 index c15e056..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll deleted file mode 100644 index 2f207bd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun32.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun32.dll deleted file mode 100644 index b05591a..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun32.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun64.dll deleted file mode 100644 index ef08da2..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrun64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrunarm64.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrunarm64.dll deleted file mode 100644 index 8171b44..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/covrunarm64.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/msdia140.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/msdia140.dll deleted file mode 100644 index e737013..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/runtimes/win-x86/native/msdia140.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 14d42e3..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 1e63d40..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index fc7858e..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index bc3eceb..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 9c3146f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index cb45d1c..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/tr/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 93d0ef0..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 8f95f0f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index d954e0f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index c8f5170..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index 5e97d2f..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hans/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll deleted file mode 100644 index 0978043..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll deleted file mode 100644 index 9afff96..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll deleted file mode 100644 index 9d38ab4..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll deleted file mode 100644 index 6a098c1..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Platform.resources.dll b/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Platform.resources.dll deleted file mode 100644 index ff41f6d..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/bin/Debug/net10.0/zh-Hant/Microsoft.Testing.Platform.resources.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/MicrosoftTestingPlatformEntryPoint.cs b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/MicrosoftTestingPlatformEntryPoint.cs deleted file mode 100644 index a3cb706..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/MicrosoftTestingPlatformEntryPoint.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by Microsoft.Testing.Platform.MSBuild -// -//------------------------------------------------------------------------------ - -namespace StevanFreeborn.Options.Tests -{ - [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] - internal sealed class MicrosoftTestingPlatformEntryPoint - { - public static async global::System.Threading.Tasks.Task Main(string[] args) - { - global::Microsoft.Testing.Platform.Builder.ITestApplicationBuilder builder = await global::Microsoft.Testing.Platform.Builder.TestApplication.CreateBuilderAsync(args); - SelfRegisteredExtensions.AddSelfRegisteredExtensions(builder, args); - using (global::Microsoft.Testing.Platform.Builder.ITestApplication app = await builder.BuildAsync()) - { - return await app.RunAsync(); - } - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs deleted file mode 100644 index fcaf9af..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/SelfRegisteredExtensions.cs +++ /dev/null @@ -1,21 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by Microsoft.Testing.Platform.MSBuild -// -//------------------------------------------------------------------------------ - -namespace StevanFreeborn.Options.Tests -{ - [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] - internal static class SelfRegisteredExtensions - { - public static void AddSelfRegisteredExtensions(this global::Microsoft.Testing.Platform.Builder.ITestApplicationBuilder builder, string[] args) - { - global::Microsoft.Testing.Platform.MSBuild.TestingPlatformBuilderHook.AddExtensions(builder, args); - global::TUnit.Engine.Framework.TestingPlatformBuilderHook.AddExtensions(builder, args); - global::Microsoft.Testing.Extensions.Telemetry.TestingPlatformBuilderHook.AddExtensions(builder, args); - global::Microsoft.Testing.Extensions.CodeCoverage.TestingPlatformBuilderHook.AddExtensions(builder, args); - global::Microsoft.Testing.Extensions.TrxReport.TestingPlatformBuilderHook.AddExtensions(builder, args); - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFr.84CDBD42.Up2Date b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFr.84CDBD42.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfo.cs b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfo.cs deleted file mode 100644 index 8181c95..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("StevanFreeborn.Options.Tests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("StevanFreeborn.Options.Tests")] -[assembly: System.Reflection.AssemblyTitleAttribute("StevanFreeborn.Options.Tests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyMetadata("Microsoft.Testing.Platform.Application", "true")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfoInputs.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfoInputs.cache deleted file mode 100644 index 93c42f9..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c5d098d3232fda03a25e9739025c61bb15972242fdf2f5e0b52d71421d43ae55 diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GeneratedMSBuildEditorConfig.editorconfig b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7d170df..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.EnableTUnitPolyfills = -build_property.EnableTUnitSourceGeneration = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = StevanFreeborn.Options.Tests -build_property.ProjectDir = C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GlobalUsings.g.cs b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GlobalUsings.g.cs deleted file mode 100644 index 90328ce..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.GlobalUsings.g.cs +++ /dev/null @@ -1,12 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; -global using TUnit.Assertions; -global using TUnit.Assertions.Extensions; -global using TUnit.Core; -global using static TUnit.Core.HookType; diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.assets.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.assets.cache deleted file mode 100644 index d6a64ff..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.assets.cache and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.AssemblyReference.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.AssemblyReference.cache deleted file mode 100644 index a396374..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.AssemblyReference.cache and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.CoreCompileInputs.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9affa4e..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -4c21138fb97a992862dce9d39b765999efbacc7d1ecc5b0e46305886d6d534d8 diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.FileListAbsolute.txt b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.FileListAbsolute.txt deleted file mode 100644 index 5c3eed1..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,158 +0,0 @@ -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\.msCoverageExtensionSourceRootsMapping_StevanFreeborn.Options.Tests -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.csproj.AssemblyReference.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.AssemblyInfoInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.AssemblyInfo.cs -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.csproj.CoreCompileInputs.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.gentestingplatformentrypointinputcache.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\MicrosoftTestingPlatformEntryPoint.cs -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.genautoregisteredextensionsinputcache.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\SelfRegisteredExtensions.cs -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.exe -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.deps.json -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.runtimeconfig.json -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.Tests.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\EnumerableAsyncProcessor.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.ApplicationInsights.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.DiaSymReader.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.CodeCoverage.Core.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.CodeCoverage.Instrumentation.Core.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.CodeCoverage.Instrumentation.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.CodeCoverage.Interprocess.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Extensions.CodeCoverage.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Mono.Cecil.Mdb.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Mono.Cecil.Pdb.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Mono.Cecil.Rocks.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Mono.Cecil.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Extensions.Telemetry.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Extensions.TrxReport.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Extensions.TrxReport.Abstractions.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Platform.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\Microsoft.Testing.Extensions.MSBuild.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\TUnit.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\TUnit.Assertions.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\TUnit.Core.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\TUnit.Engine.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\cs\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\de\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\es\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\fr\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\hu\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\it\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ja\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ko\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\nl\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pl\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-BR\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-PT\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ru\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\sv\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\tr\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.Testing.Extensions.CodeCoverage.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\cs\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\de\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\es\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\fr\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\it\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ja\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ko\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pl\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-BR\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ru\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\tr\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.Testing.Extensions.Telemetry.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\cs\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\de\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\es\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\fr\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\it\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ja\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ko\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pl\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-BR\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ru\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\tr\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.Testing.Extensions.TrxReport.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\cs\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\de\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\es\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\fr\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\it\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ja\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ko\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pl\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-BR\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ru\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\tr\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.Testing.Platform.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\cs\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\de\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\es\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\fr\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\it\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ja\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ko\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pl\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\pt-BR\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\ru\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\tr\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hans\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\zh-Hant\Microsoft.Testing.Extensions.MSBuild.resources.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-musl-x64\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-musl-x64\native\libCoverageInstrumentationMethod.so -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-musl-x64\native\libInstrumentationEngine.so -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-x64\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-x64\native\libCoverageInstrumentationMethod.so -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\linux-x64\native\libInstrumentationEngine.so -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\osx-x64\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\osx-x64\native\libCoverageInstrumentationMethod.dylib -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\osx-x64\native\libInstrumentationEngine.dylib -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\CodeCoverageMessages.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\Cov_arm64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\Cov_x86.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\MicrosoftInstrumentationEngine_arm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\MicrosoftInstrumentationEngine_x64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\MicrosoftInstrumentationEngine_x86.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\covrun32.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\covrun64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\covrunarm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-arm64\native\msdia140.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\CodeCoverageMessages.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\Cov_arm64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\Cov_x86.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\MicrosoftInstrumentationEngine_arm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\MicrosoftInstrumentationEngine_x64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\MicrosoftInstrumentationEngine_x86.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\covrun32.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\covrun64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\covrunarm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x64\native\msdia140.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\CodeCoverageMessages.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\Cov_arm64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\Cov_x64.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\Cov_x86.config -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\MicrosoftInstrumentationEngine_arm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\MicrosoftInstrumentationEngine_x64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\MicrosoftInstrumentationEngine_x86.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\covrun32.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\covrun64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\covrunarm64.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\runtimes\win-x86\native\msdia140.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\bin\Debug\net10.0\StevanFreeborn.Options.xml -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFr.84CDBD42.Up2Date -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\refint\StevanFreeborn.Options.Tests.dll -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.pdb -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\StevanFreeborn.Options.Tests.genruntimeconfig.cache -C:\Users\sfree\Repositories\stevanfreeborn.options\tests\StevanFreeborn.Options.Tests\obj\Debug\net10.0\ref\StevanFreeborn.Options.Tests.dll diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.dll b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.dll deleted file mode 100644 index 699b9dd..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genautoregisteredextensionsinputcache.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genautoregisteredextensionsinputcache.cache deleted file mode 100644 index 3554806..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genautoregisteredextensionsinputcache.cache +++ /dev/null @@ -1 +0,0 @@ -4119419d4da8c9f63e10b7b21de634ebfc9c91fa01fbab1a820e7b5154e5156d diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genruntimeconfig.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genruntimeconfig.cache deleted file mode 100644 index 4f6c748..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -0e9a9b22081758e0d76590f2a9f410ec98a3c06352ebe008454eeed993157c76 diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.gentestingplatformentrypointinputcache.cache b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.gentestingplatformentrypointinputcache.cache deleted file mode 100644 index 3554806..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.gentestingplatformentrypointinputcache.cache +++ /dev/null @@ -1 +0,0 @@ -4119419d4da8c9f63e10b7b21de634ebfc9c91fa01fbab1a820e7b5154e5156d diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.pdb b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.pdb deleted file mode 100644 index a701eef..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/StevanFreeborn.Options.Tests.pdb and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/apphost.exe b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/apphost.exe deleted file mode 100644 index 81334d3..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/apphost.exe and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/ref/StevanFreeborn.Options.Tests.dll b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/ref/StevanFreeborn.Options.Tests.dll deleted file mode 100644 index 850c235..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/ref/StevanFreeborn.Options.Tests.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/refint/StevanFreeborn.Options.Tests.dll b/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/refint/StevanFreeborn.Options.Tests.dll deleted file mode 100644 index 850c235..0000000 Binary files a/tests/StevanFreeborn.Options.Tests/obj/Debug/net10.0/refint/StevanFreeborn.Options.Tests.dll and /dev/null differ diff --git a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.dgspec.json b/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.dgspec.json deleted file mode 100644 index af23903..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,867 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj": {} - }, - "projects": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj": { - "version": "0.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "projectName": "StevanFreeborn.Options", - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj", - "packagesPath": "C:\\Users\\sfree\\.nuget\\packages\\", - "outputPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\obj\\", - "projectStyle": "PackageReference", - "crossTargeting": true, - "centralPackageVersionsManagementEnabled": true, - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\sfree\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0", - "netstandard2.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": {} - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.200" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.ILLink.Tasks": { - "suppressParent": "All", - "target": "Package", - "version": "[10.0.5, )", - "autoReferenced": true - }, - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - }, - "netstandard2.1": { - "targetAlias": "netstandard2.1", - "dependencies": { - "Microsoft.SourceLink.Gitea": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[10.0.201, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "Microsoft.SourceLink.Gitea": "10.0.201" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "NETStandard.Library": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201\\RuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.Win32.Primitives": "(,4.3.0]", - "System.AppContext": "(,4.3.0]", - "System.Buffers": "(,4.6.1]", - "System.Collections": "(,4.3.0]", - "System.Collections.Concurrent": "(,4.3.0]", - "System.Collections.NonGeneric": "(,4.3.0]", - "System.Collections.Specialized": "(,4.3.0]", - "System.ComponentModel": "(,4.3.0]", - "System.ComponentModel.EventBasedAsync": "(,4.3.0]", - "System.ComponentModel.Primitives": "(,4.3.0]", - "System.ComponentModel.TypeConverter": "(,4.3.0]", - "System.Console": "(,4.3.1]", - "System.Data.Common": "(,4.3.0]", - "System.Diagnostics.Contracts": "(,4.3.0]", - "System.Diagnostics.Debug": "(,4.3.0]", - "System.Diagnostics.FileVersionInfo": "(,4.3.0]", - "System.Diagnostics.Process": "(,4.3.0]", - "System.Diagnostics.StackTrace": "(,4.3.0]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.0]", - "System.Diagnostics.Tools": "(,4.3.0]", - "System.Diagnostics.TraceSource": "(,4.3.0]", - "System.Diagnostics.Tracing": "(,4.3.0]", - "System.Drawing.Primitives": "(,4.3.0]", - "System.Dynamic.Runtime": "(,4.3.0]", - "System.Globalization": "(,4.3.0]", - "System.Globalization.Calendars": "(,4.3.0]", - "System.Globalization.Extensions": "(,4.3.0]", - "System.IO": "(,4.3.0]", - "System.IO.Compression": "(,4.3.0]", - "System.IO.Compression.ZipFile": "(,4.3.0]", - "System.IO.FileSystem": "(,4.3.0]", - "System.IO.FileSystem.DriveInfo": "(,4.3.1]", - "System.IO.FileSystem.Primitives": "(,4.3.0]", - "System.IO.FileSystem.Watcher": "(,4.3.0]", - "System.IO.IsolatedStorage": "(,4.3.0]", - "System.IO.MemoryMappedFiles": "(,4.3.0]", - "System.IO.Pipes": "(,4.3.0]", - "System.IO.UnmanagedMemoryStream": "(,4.3.0]", - "System.Linq": "(,4.3.0]", - "System.Linq.Expressions": "(,4.3.0]", - "System.Linq.Parallel": "(,4.3.0]", - "System.Linq.Queryable": "(,4.3.0]", - "System.Memory": "(,4.6.3]", - "System.Net.Http": "(,4.3.4]", - "System.Net.NameResolution": "(,4.3.0]", - "System.Net.NetworkInformation": "(,4.3.0]", - "System.Net.Ping": "(,4.3.0]", - "System.Net.Primitives": "(,4.3.1]", - "System.Net.Requests": "(,4.3.0]", - "System.Net.Security": "(,4.3.2]", - "System.Net.Sockets": "(,4.3.0]", - "System.Net.WebHeaderCollection": "(,4.3.0]", - "System.Net.WebSockets": "(,4.3.0]", - "System.Net.WebSockets.Client": "(,4.3.2]", - "System.Numerics.Vectors": "(,4.6.1]", - "System.ObjectModel": "(,4.3.0]", - "System.Reflection": "(,4.3.0]", - "System.Reflection.DispatchProxy": "(,4.5.1]", - "System.Reflection.Emit": "(,4.7.0]", - "System.Reflection.Emit.ILGeneration": "(,4.7.0]", - "System.Reflection.Emit.Lightweight": "(,4.7.0]", - "System.Reflection.Extensions": "(,4.3.0]", - "System.Reflection.Primitives": "(,4.3.0]", - "System.Resources.Reader": "(,4.3.0]", - "System.Resources.ResourceManager": "(,4.3.0]", - "System.Resources.Writer": "(,4.3.0]", - "System.Runtime": "(,4.3.1]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.0]", - "System.Runtime.Extensions": "(,4.3.1]", - "System.Runtime.Handles": "(,4.3.0]", - "System.Runtime.InteropServices": "(,4.3.0]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.0]", - "System.Runtime.Numerics": "(,4.3.0]", - "System.Runtime.Serialization.Formatters": "(,4.3.0]", - "System.Runtime.Serialization.Json": "(,4.3.0]", - "System.Runtime.Serialization.Primitives": "(,4.3.0]", - "System.Runtime.Serialization.Xml": "(,4.3.0]", - "System.Security.Claims": "(,4.3.0]", - "System.Security.Cryptography.Algorithms": "(,4.3.1]", - "System.Security.Cryptography.Csp": "(,4.3.0]", - "System.Security.Cryptography.Encoding": "(,4.3.0]", - "System.Security.Cryptography.Primitives": "(,4.3.0]", - "System.Security.Cryptography.X509Certificates": "(,4.3.2]", - "System.Security.Principal": "(,4.3.0]", - "System.Security.SecureString": "(,4.3.0]", - "System.Text.Encoding": "(,4.3.0]", - "System.Text.Encoding.Extensions": "(,4.3.0]", - "System.Text.RegularExpressions": "(,4.3.0]", - "System.Threading": "(,4.3.0]", - "System.Threading.Overlapped": "(,4.3.0]", - "System.Threading.Tasks": "(,4.3.0]", - "System.Threading.Tasks.Extensions": "(,4.6.3]", - "System.Threading.Tasks.Parallel": "(,4.3.0]", - "System.Threading.Thread": "(,4.3.0]", - "System.Threading.ThreadPool": "(,4.3.0]", - "System.Threading.Timer": "(,4.3.0]", - "System.ValueTuple": "(,4.6.1]", - "System.Xml.ReaderWriter": "(,4.3.1]", - "System.Xml.XDocument": "(,4.3.0]", - "System.Xml.XmlDocument": "(,4.3.0]", - "System.Xml.XmlSerializer": "(,4.3.0]", - "System.Xml.XPath": "(,4.3.0]", - "System.Xml.XPath.XDocument": "(,4.3.0]" - } - } - } - }, - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj", - "projectName": "StevanFreeborn.Options.Tests", - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj", - "packagesPath": "C:\\Users\\sfree\\.nuget\\packages\\", - "outputPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\obj\\", - "projectStyle": "PackageReference", - "centralPackageVersionsManagementEnabled": true, - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\sfree\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj": { - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.200" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "TUnit": { - "target": "Package", - "version": "[1.23.7, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "TUnit": "1.23.7" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.props b/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.props deleted file mode 100644 index 6d1e6c1..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.props +++ /dev/null @@ -1,26 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\sfree\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.targets b/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.targets deleted file mode 100644 index 32114bc..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/StevanFreeborn.Options.Tests.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/project.assets.json b/tests/StevanFreeborn.Options.Tests/obj/project.assets.json deleted file mode 100644 index 0339008..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/project.assets.json +++ /dev/null @@ -1,1671 +0,0 @@ -{ - "version": 3, - "targets": { - "net10.0": { - "EnumerableAsyncProcessor/3.8.4": { - "type": "package", - "compile": { - "lib/net9.0/EnumerableAsyncProcessor.dll": {} - }, - "runtime": { - "lib/net9.0/EnumerableAsyncProcessor.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.23.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.DiaSymReader/2.2.3": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Testing.Extensions.CodeCoverage/18.5.2": { - "type": "package", - "dependencies": { - "Microsoft.DiaSymReader": "2.2.3", - "Microsoft.Extensions.DependencyModel": "8.0.2", - "Microsoft.Testing.Platform": "2.1.0" - }, - "compile": { - "lib/net8.0/Microsoft.CodeCoverage.Core.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll": {}, - "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll": { - "related": ".pdb" - }, - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}, - "lib/net8.0/Mono.Cecil.Mdb.dll": {}, - "lib/net8.0/Mono.Cecil.Pdb.dll": {}, - "lib/net8.0/Mono.Cecil.Rocks.dll": {}, - "lib/net8.0/Mono.Cecil.dll": {} - }, - "runtime": { - "lib/net8.0/Microsoft.CodeCoverage.Core.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll": {}, - "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll": {}, - "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll": { - "related": ".pdb" - }, - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}, - "lib/net8.0/Mono.Cecil.Mdb.dll": {}, - "lib/net8.0/Mono.Cecil.Pdb.dll": {}, - "lib/net8.0/Mono.Cecil.Rocks.dll": {}, - "lib/net8.0/Mono.Cecil.dll": {} - }, - "resource": { - "lib/net8.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "hu" - }, - "lib/net8.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "nl" - }, - "lib/net8.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "pt-PT" - }, - "lib/net8.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "sv" - }, - "lib/net8.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props": {}, - "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.props": {}, - "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.targets": {} - }, - "runtimeTargets": { - "runtimes/linux-musl-x64/native/Cov_x64.config": { - "assetType": "native", - "rid": "linux-musl-x64" - }, - "runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so": { - "assetType": "native", - "rid": "linux-musl-x64" - }, - "runtimes/linux-musl-x64/native/libInstrumentationEngine.so": { - "assetType": "native", - "rid": "linux-musl-x64" - }, - "runtimes/linux-x64/native/Cov_x64.config": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/linux-x64/native/libCoverageInstrumentationMethod.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/linux-x64/native/libInstrumentationEngine.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/osx-x64/native/Cov_x64.config": { - "assetType": "native", - "rid": "osx-x64" - }, - "runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib": { - "assetType": "native", - "rid": "osx-x64" - }, - "runtimes/osx-x64/native/libInstrumentationEngine.dylib": { - "assetType": "native", - "rid": "osx-x64" - }, - "runtimes/win-arm64/native/CodeCoverageMessages.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/Cov_arm64.config": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/Cov_x64.config": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/Cov_x86.config": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/covrun32.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/covrun64.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/covrunarm64.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/msdia140.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-x64/native/CodeCoverageMessages.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/Cov_arm64.config": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/Cov_x64.config": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/Cov_x86.config": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/covrun32.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/covrun64.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/covrunarm64.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/msdia140.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/native/CodeCoverageMessages.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/Cov_arm64.config": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/Cov_x64.config": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/Cov_x86.config": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/covrun32.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/covrun64.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/covrunarm64.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/msdia140.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "Microsoft.Testing.Extensions.Telemetry/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "2.23.0", - "Microsoft.Testing.Platform": "2.1.0" - }, - "compile": { - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net9.0/Microsoft.Testing.Extensions.Telemetry.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props": {} - } - }, - "Microsoft.Testing.Extensions.TrxReport/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.1.0", - "Microsoft.Testing.Platform": "2.1.0" - }, - "compile": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net9.0/Microsoft.Testing.Extensions.TrxReport.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Extensions.TrxReport.props": {} - } - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Platform": "2.1.0" - }, - "compile": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Testing.Platform/2.1.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.Testing.Platform.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Platform.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net9.0/Microsoft.Testing.Platform.props": {}, - "buildTransitive/net9.0/Microsoft.Testing.Platform.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Platform.props": {}, - "buildMultiTargeting/Microsoft.Testing.Platform.targets": {} - } - }, - "Microsoft.Testing.Platform.MSBuild/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Platform": "2.1.0" - }, - "compile": { - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/Microsoft.Testing.Platform.MSBuild.props": {}, - "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props": {}, - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets": {} - } - }, - "TUnit/1.23.7": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Extensions.CodeCoverage": "18.5.2", - "Microsoft.Testing.Extensions.Telemetry": "2.1.0", - "Microsoft.Testing.Extensions.TrxReport": "2.1.0", - "TUnit.Assertions": "1.23.7", - "TUnit.Engine": "1.23.7" - }, - "compile": { - "lib/net10.0/TUnit.dll": {} - }, - "runtime": { - "lib/net10.0/TUnit.dll": {} - } - }, - "TUnit.Assertions/1.23.7": { - "type": "package", - "compile": { - "lib/net10.0/TUnit.Assertions.dll": {} - }, - "runtime": { - "lib/net10.0/TUnit.Assertions.dll": {} - }, - "build": { - "buildTransitive/net10.0/TUnit.Assertions.props": {}, - "buildTransitive/net10.0/TUnit.Assertions.targets": {} - } - }, - "TUnit.Core/1.23.7": { - "type": "package", - "compile": { - "lib/net10.0/TUnit.Core.dll": {} - }, - "runtime": { - "lib/net10.0/TUnit.Core.dll": {} - }, - "build": { - "buildTransitive/net10.0/TUnit.Core.props": {}, - "buildTransitive/net10.0/TUnit.Core.targets": {} - } - }, - "TUnit.Engine/1.23.7": { - "type": "package", - "dependencies": { - "EnumerableAsyncProcessor": "3.8.4", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "2.1.0", - "Microsoft.Testing.Platform": "2.1.0", - "Microsoft.Testing.Platform.MSBuild": "2.1.0", - "TUnit.Core": "1.23.7" - }, - "compile": { - "lib/net10.0/TUnit.Engine.dll": {} - }, - "runtime": { - "lib/net10.0/TUnit.Engine.dll": {} - }, - "build": { - "buildTransitive/net10.0/TUnit.Engine.props": {} - } - }, - "StevanFreeborn.Options/0.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/StevanFreeborn.Options.dll": {} - }, - "runtime": { - "bin/placeholder/StevanFreeborn.Options.dll": {} - } - } - } - }, - "libraries": { - "EnumerableAsyncProcessor/3.8.4": { - "sha512": "KlbpupRCz3Kf+P7gsiDvFXJ980i/9lfihMZFmmxIk0Gf6mopEjy74OTJZmdaKDQpE29eQDBnMZB5khyW3eugrg==", - "type": "package", - "path": "enumerableasyncprocessor/3.8.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "enumerableasyncprocessor.3.8.4.nupkg.sha512", - "enumerableasyncprocessor.nuspec", - "lib/net6.0/EnumerableAsyncProcessor.dll", - "lib/net8.0/EnumerableAsyncProcessor.dll", - "lib/net9.0/EnumerableAsyncProcessor.dll", - "lib/netstandard2.0/EnumerableAsyncProcessor.dll" - ] - }, - "Microsoft.ApplicationInsights/2.23.0": { - "sha512": "nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==", - "type": "package", - "path": "microsoft.applicationinsights/2.23.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net452/Microsoft.ApplicationInsights.dll", - "lib/net452/Microsoft.ApplicationInsights.pdb", - "lib/net452/Microsoft.ApplicationInsights.xml", - "lib/net46/Microsoft.ApplicationInsights.dll", - "lib/net46/Microsoft.ApplicationInsights.pdb", - "lib/net46/Microsoft.ApplicationInsights.xml", - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", - "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", - "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", - "microsoft.applicationinsights.2.23.0.nupkg.sha512", - "microsoft.applicationinsights.nuspec" - ] - }, - "Microsoft.DiaSymReader/2.2.3": { - "sha512": "bhwzJfzyiJM0nXJyNB7Y9OfsEXyxLdDBHG99soIp5JjnPydwkOaBdRCtRtWgQh3noSLi2cSIZ/wpbHNNE9knxQ==", - "type": "package", - "path": "microsoft.diasymreader/2.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net10.0/Microsoft.DiaSymReader.dll", - "lib/net10.0/Microsoft.DiaSymReader.pdb", - "lib/net10.0/Microsoft.DiaSymReader.xml", - "lib/netstandard2.0/Microsoft.DiaSymReader.dll", - "lib/netstandard2.0/Microsoft.DiaSymReader.pdb", - "lib/netstandard2.0/Microsoft.DiaSymReader.xml", - "microsoft.diasymreader.2.2.3.nupkg.sha512", - "microsoft.diasymreader.nuspec" - ] - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", - "lib/net462/Microsoft.Extensions.DependencyModel.dll", - "lib/net462/Microsoft.Extensions.DependencyModel.xml", - "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Testing.Extensions.CodeCoverage/18.5.2": { - "sha512": "UNcGLx9pVtlXF8MPDR8KDp+/OKKNIJjpzwRyZSt609TSGvaD8mtuQMb5GKZvhMucPp0a5Juvn3kxXDceQZWmAg==", - "type": "package", - "path": "microsoft.testing.extensions.codecoverage/18.5.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "License.txt", - "PACKAGE.md", - "ThirdPartyNotices.txt", - "build/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props", - "build/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.props", - "build/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.targets", - "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.props", - "buildMultiTargeting/Microsoft.Testing.Extensions.CodeCoverage.targets", - "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.props", - "buildTransitive/net8.0/Microsoft.Testing.Extensions.CodeCoverage.targets", - "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.targets", - "lib/net8.0/Microsoft.CodeCoverage.Core.dll", - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "lib/net8.0/Microsoft.CodeCoverage.Instrumentation.dll", - "lib/net8.0/Microsoft.CodeCoverage.Interprocess.dll", - "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.dll", - "lib/net8.0/Microsoft.Testing.Extensions.CodeCoverage.pdb", - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/net8.0/Mono.Cecil.Mdb.dll", - "lib/net8.0/Mono.Cecil.Pdb.dll", - "lib/net8.0/Mono.Cecil.Rocks.dll", - "lib/net8.0/Mono.Cecil.dll", - "lib/net8.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "lib/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "lib/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "lib/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.CodeCoverage.pdb", - "lib/netstandard2.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netstandard2.0/Mono.Cecil.Mdb.dll", - "lib/netstandard2.0/Mono.Cecil.Pdb.dll", - "lib/netstandard2.0/Mono.Cecil.Rocks.dll", - "lib/netstandard2.0/Mono.Cecil.dll", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/hu/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/nl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/pt-PT/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/sv/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.CodeCoverage.resources.dll", - "microsoft.testing.extensions.codecoverage.18.5.2.nupkg.sha512", - "microsoft.testing.extensions.codecoverage.nuspec", - "runtimes/linux-musl-x64/native/Cov_x64.config", - "runtimes/linux-musl-x64/native/libCoverageInstrumentationMethod.so", - "runtimes/linux-musl-x64/native/libInstrumentationEngine.so", - "runtimes/linux-x64/native/Cov_x64.config", - "runtimes/linux-x64/native/libCoverageInstrumentationMethod.so", - "runtimes/linux-x64/native/libInstrumentationEngine.so", - "runtimes/osx-x64/native/Cov_x64.config", - "runtimes/osx-x64/native/libCoverageInstrumentationMethod.dylib", - "runtimes/osx-x64/native/libInstrumentationEngine.dylib", - "runtimes/win-arm64/native/CodeCoverageMessages.dll", - "runtimes/win-arm64/native/Cov_arm64.config", - "runtimes/win-arm64/native/Cov_x64.config", - "runtimes/win-arm64/native/Cov_x86.config", - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_arm64.dll", - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x64.dll", - "runtimes/win-arm64/native/MicrosoftInstrumentationEngine_x86.dll", - "runtimes/win-arm64/native/covrun32.dll", - "runtimes/win-arm64/native/covrun64.dll", - "runtimes/win-arm64/native/covrunarm64.dll", - "runtimes/win-arm64/native/msdia140.dll", - "runtimes/win-x64/native/CodeCoverageMessages.dll", - "runtimes/win-x64/native/Cov_arm64.config", - "runtimes/win-x64/native/Cov_x64.config", - "runtimes/win-x64/native/Cov_x86.config", - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_arm64.dll", - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x64.dll", - "runtimes/win-x64/native/MicrosoftInstrumentationEngine_x86.dll", - "runtimes/win-x64/native/covrun32.dll", - "runtimes/win-x64/native/covrun64.dll", - "runtimes/win-x64/native/covrunarm64.dll", - "runtimes/win-x64/native/msdia140.dll", - "runtimes/win-x86/native/CodeCoverageMessages.dll", - "runtimes/win-x86/native/Cov_arm64.config", - "runtimes/win-x86/native/Cov_x64.config", - "runtimes/win-x86/native/Cov_x86.config", - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_arm64.dll", - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x64.dll", - "runtimes/win-x86/native/MicrosoftInstrumentationEngine_x86.dll", - "runtimes/win-x86/native/covrun32.dll", - "runtimes/win-x86/native/covrun64.dll", - "runtimes/win-x86/native/covrunarm64.dll", - "runtimes/win-x86/native/msdia140.dll" - ] - }, - "Microsoft.Testing.Extensions.Telemetry/2.1.0": { - "sha512": "5TwgTx2u7k9Al/xbZ18QXq4Hdy2xewkVTI6K3sk+jY2ykqUkIKNuj7rFu3GOV5KnEUkevhw6eZcyZs77STHJIA==", - "type": "package", - "path": "microsoft.testing.extensions.telemetry/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net8.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/net9.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net8.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net9.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "microsoft.testing.extensions.telemetry.2.1.0.nupkg.sha512", - "microsoft.testing.extensions.telemetry.nuspec" - ] - }, - "Microsoft.Testing.Extensions.TrxReport/2.1.0": { - "sha512": "cXmP225WcMLLOSrW8xekaNhfzdBwXX3cbXbE5qSzmLbK0KZe3z8rAObKj70FWiPPPzm2W22x0ZW93gsmAfK6Mg==", - "type": "package", - "path": "microsoft.testing.extensions.trxreport/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net8.0/Microsoft.Testing.Extensions.TrxReport.props", - "build/net9.0/Microsoft.Testing.Extensions.TrxReport.props", - "build/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.props", - "buildMultiTargeting/Microsoft.Testing.Extensions.TrxReport.props", - "buildTransitive/net8.0/Microsoft.Testing.Extensions.TrxReport.props", - "buildTransitive/net9.0/Microsoft.Testing.Extensions.TrxReport.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.props", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.dll", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.dll", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.TrxReport.resources.dll", - "microsoft.testing.extensions.trxreport.2.1.0.nupkg.sha512", - "microsoft.testing.extensions.trxreport.nuspec" - ] - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.0": { - "sha512": "D8xmIJYQFJ6D49Rx5/vPrkZZxb338Jkew+eSqZLBfBiWKw4QZKy3i1BOXiLfz0lOmaNErwDz/YWRojCdNl+B9Q==", - "type": "package", - "path": "microsoft.testing.extensions.trxreport.abstractions/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "microsoft.testing.extensions.trxreport.abstractions.2.1.0.nupkg.sha512", - "microsoft.testing.extensions.trxreport.abstractions.nuspec" - ] - }, - "Microsoft.Testing.Platform/2.1.0": { - "sha512": "aHkjNTGIA+Zbdw6RJgSFrbDrCjO0CgqpElqYcvkRSeUhBv2bKarnvU3ep786U7UqrPlArT/B7VmImRibJD0Zrg==", - "type": "package", - "path": "microsoft.testing.platform/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net8.0/Microsoft.Testing.Platform.props", - "build/net8.0/Microsoft.Testing.Platform.targets", - "build/net9.0/Microsoft.Testing.Platform.props", - "build/net9.0/Microsoft.Testing.Platform.targets", - "build/netstandard2.0/Microsoft.Testing.Platform.props", - "build/netstandard2.0/Microsoft.Testing.Platform.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.props", - "buildMultiTargeting/Microsoft.Testing.Platform.targets", - "buildTransitive/net8.0/Microsoft.Testing.Platform.props", - "buildTransitive/net8.0/Microsoft.Testing.Platform.targets", - "buildTransitive/net9.0/Microsoft.Testing.Platform.props", - "buildTransitive/net9.0/Microsoft.Testing.Platform.targets", - "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.targets", - "lib/net8.0/Microsoft.Testing.Platform.dll", - "lib/net8.0/Microsoft.Testing.Platform.xml", - "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/Microsoft.Testing.Platform.dll", - "lib/net9.0/Microsoft.Testing.Platform.xml", - "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Platform.dll", - "lib/netstandard2.0/Microsoft.Testing.Platform.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "microsoft.testing.platform.2.1.0.nupkg.sha512", - "microsoft.testing.platform.nuspec" - ] - }, - "Microsoft.Testing.Platform.MSBuild/2.1.0": { - "sha512": "UpfPebXQtHGrWz21+YLHmJSm+5zsuPE9U9pfdCtoB+67g75fDmWlNgpkH2ZmdVhSwkjNIed9Icg8Iu63z2ei5Q==", - "type": "package", - "path": "microsoft.testing.platform.msbuild/2.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.dll", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.xml", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.dll", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.xml", - "_MSBuildTasks/netstandard2.0/Microsoft.Win32.Registry.dll", - "_MSBuildTasks/netstandard2.0/System.Security.AccessControl.dll", - "_MSBuildTasks/netstandard2.0/System.Security.Principal.Windows.dll", - "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "build/Microsoft.Testing.Platform.MSBuild.props", - "build/Microsoft.Testing.Platform.MSBuild.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.CustomTestTarget.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.VSTest.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets", - "buildTransitive/Microsoft.Testing.Platform.MSBuild.props", - "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets", - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "microsoft.testing.platform.msbuild.2.1.0.nupkg.sha512", - "microsoft.testing.platform.msbuild.nuspec" - ] - }, - "TUnit/1.23.7": { - "sha512": "PVEu/QwlNe2413Qpfru4B7wixLTKGcjqxISKXqUCGAeEKQ84NHMvNVVnm5JKbpMsam2Sf79S6S2HaAIaXy7NYA==", - "type": "package", - "path": "tunit/1.23.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/TUnit.dll", - "lib/net8.0/TUnit.dll", - "lib/net9.0/TUnit.dll", - "lib/netstandard2.0/TUnit.dll", - "logo.jpg", - "tunit.1.23.7.nupkg.sha512", - "tunit.nuspec" - ] - }, - "TUnit.Assertions/1.23.7": { - "sha512": "eWCF4SVUxu4vEfJj8wZuE92ONv5lZdL/E3b3Y/axpM55BG0X4dRpvf0Hm80DNB9uJoBjdq9u/QMom2G1wsENgQ==", - "type": "package", - "path": "tunit.assertions/1.23.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "analyzers/dotnet/cs/TUnit.Assertions.Analyzers.CodeFixers.dll", - "analyzers/dotnet/cs/TUnit.Assertions.Analyzers.dll", - "analyzers/dotnet/cs/TUnit.Assertions.SourceGenerator.dll", - "build/netstandard2.0/TUnit.Assertions.props", - "build/netstandard2.0/TUnit.Assertions.targets", - "buildTransitive/net10.0/TUnit.Assertions.props", - "buildTransitive/net10.0/TUnit.Assertions.targets", - "buildTransitive/net8.0/TUnit.Assertions.props", - "buildTransitive/net8.0/TUnit.Assertions.targets", - "buildTransitive/net9.0/TUnit.Assertions.props", - "buildTransitive/net9.0/TUnit.Assertions.targets", - "buildTransitive/netstandard2.0/TUnit.Assertions.props", - "buildTransitive/netstandard2.0/TUnit.Assertions.targets", - "lib/net10.0/TUnit.Assertions.dll", - "lib/net8.0/TUnit.Assertions.dll", - "lib/net9.0/TUnit.Assertions.dll", - "lib/netstandard2.0/TUnit.Assertions.dll", - "logo.jpg", - "tunit.assertions.1.23.7.nupkg.sha512", - "tunit.assertions.nuspec" - ] - }, - "TUnit.Core/1.23.7": { - "sha512": "035xcZ8Lf9y7FI93uvKTWqlwKxY2FBPZ00k0awur38iStXP9Vw3C+Hfz5hDHHryU+H8r0FiYYkqzGDannZ2G/g==", - "type": "package", - "path": "tunit.core/1.23.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "analyzers/dotnet/cs/TUnit.Analyzers.CodeFixers.dll", - "analyzers/dotnet/roslyn4.14/cs/TUnit.Analyzers.dll", - "analyzers/dotnet/roslyn4.14/cs/TUnit.Core.SourceGenerator.dll", - "analyzers/dotnet/roslyn4.4/cs/TUnit.Analyzers.dll", - "analyzers/dotnet/roslyn4.4/cs/TUnit.Core.SourceGenerator.dll", - "analyzers/dotnet/roslyn4.7/cs/TUnit.Analyzers.dll", - "analyzers/dotnet/roslyn4.7/cs/TUnit.Core.SourceGenerator.dll", - "build/netstandard2.0/TUnit.Core.props", - "build/netstandard2.0/TUnit.Core.targets", - "buildTransitive/net10.0/TUnit.Core.props", - "buildTransitive/net10.0/TUnit.Core.targets", - "buildTransitive/net8.0/TUnit.Core.props", - "buildTransitive/net8.0/TUnit.Core.targets", - "buildTransitive/net9.0/TUnit.Core.props", - "buildTransitive/net9.0/TUnit.Core.targets", - "buildTransitive/netstandard2.0/TUnit.Core.props", - "buildTransitive/netstandard2.0/TUnit.Core.targets", - "lib/net10.0/TUnit.Core.dll", - "lib/net8.0/TUnit.Core.dll", - "lib/net9.0/TUnit.Core.dll", - "lib/netstandard2.0/TUnit.Core.dll", - "logo.jpg", - "tunit.core.1.23.7.nupkg.sha512", - "tunit.core.nuspec" - ] - }, - "TUnit.Engine/1.23.7": { - "sha512": "yek0/Lg0jncyu5mHfLRZyBFNVEbWIofpKcWP5VpscY46IzOeqqgPSURhkg3t52zEbCEPyPOmSZrcDTK2undk7g==", - "type": "package", - "path": "tunit.engine/1.23.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "build/netstandard2.0/TUnit.Engine.props", - "buildTransitive/net10.0/TUnit.Engine.props", - "buildTransitive/net8.0/TUnit.Engine.props", - "buildTransitive/net9.0/TUnit.Engine.props", - "buildTransitive/netstandard2.0/TUnit.Engine.props", - "lib/net10.0/TUnit.Engine.dll", - "lib/net8.0/TUnit.Engine.dll", - "lib/net9.0/TUnit.Engine.dll", - "lib/netstandard2.0/TUnit.Engine.dll", - "logo.jpg", - "tunit.engine.1.23.7.nupkg.sha512", - "tunit.engine.nuspec" - ] - }, - "StevanFreeborn.Options/0.0.0": { - "type": "project", - "path": "../../src/StevanFreeborn.Options/StevanFreeborn.Options.csproj", - "msbuildProject": "../../src/StevanFreeborn.Options/StevanFreeborn.Options.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "StevanFreeborn.Options >= 0.0.0", - "TUnit >= 1.23.7" - ] - }, - "packageFolders": { - "C:\\Users\\sfree\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj", - "projectName": "StevanFreeborn.Options.Tests", - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj", - "packagesPath": "C:\\Users\\sfree\\.nuget\\packages\\", - "outputPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\obj\\", - "projectStyle": "PackageReference", - "centralPackageVersionsManagementEnabled": true, - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\sfree\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "projectReferences": { - "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj": { - "projectPath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\src\\StevanFreeborn.Options\\StevanFreeborn.Options.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.200" - }, - "frameworks": { - "net10.0": { - "targetAlias": "net10.0", - "dependencies": { - "TUnit": { - "target": "Package", - "version": "[1.23.7, )", - "versionCentrallyManaged": true - } - }, - "centralPackageVersions": { - "TUnit": "1.23.7" - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/tests/StevanFreeborn.Options.Tests/obj/project.nuget.cache b/tests/StevanFreeborn.Options.Tests/obj/project.nuget.cache deleted file mode 100644 index b877ba5..0000000 --- a/tests/StevanFreeborn.Options.Tests/obj/project.nuget.cache +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "WA2NkjSJTzU=", - "success": true, - "projectFilePath": "C:\\Users\\sfree\\Repositories\\stevanfreeborn.options\\tests\\StevanFreeborn.Options.Tests\\StevanFreeborn.Options.Tests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\sfree\\.nuget\\packages\\enumerableasyncprocessor\\3.8.4\\enumerableasyncprocessor.3.8.4.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.applicationinsights\\2.23.0\\microsoft.applicationinsights.2.23.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.diasymreader\\2.2.3\\microsoft.diasymreader.2.2.3.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.extensions.codecoverage\\18.5.2\\microsoft.testing.extensions.codecoverage.18.5.2.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.extensions.telemetry\\2.1.0\\microsoft.testing.extensions.telemetry.2.1.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.extensions.trxreport\\2.1.0\\microsoft.testing.extensions.trxreport.2.1.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.extensions.trxreport.abstractions\\2.1.0\\microsoft.testing.extensions.trxreport.abstractions.2.1.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.platform\\2.1.0\\microsoft.testing.platform.2.1.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\microsoft.testing.platform.msbuild\\2.1.0\\microsoft.testing.platform.msbuild.2.1.0.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\tunit\\1.23.7\\tunit.1.23.7.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\tunit.assertions\\1.23.7\\tunit.assertions.1.23.7.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\tunit.core\\1.23.7\\tunit.core.1.23.7.nupkg.sha512", - "C:\\Users\\sfree\\.nuget\\packages\\tunit.engine\\1.23.7\\tunit.engine.1.23.7.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file