Skip to content

Commit

Permalink
Update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDunn committed Sep 25, 2024
1 parent 819ce7f commit 57647ee
Show file tree
Hide file tree
Showing 30,574 changed files with 94,552 additions and 155,880 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

namespace Whatever
{
[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
Expand Down Expand Up @@ -291,10 +289,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Age> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Age> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Age>(new Age(value));
return new Vogen.ValueObjectOrError<Age>(new Age(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down Expand Up @@ -757,8 +755,6 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

namespace Whatever
{
[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
Expand Down Expand Up @@ -861,15 +857,15 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Name> TryFrom(System.String value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Name> TryFrom(System.String value)
{
if (value is null)
{
return new ValueObjectOrError<Name>(Vogen.Validation.Invalid("The value provided was null"));
return new Vogen.ValueObjectOrError<Name>(Vogen.Validation.Invalid("The value provided was null"));
}

return new ValueObjectOrError<Name>(new Name(value));
return new Vogen.ValueObjectOrError<Name>(new Name(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Guid value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Guid value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -157,10 +155,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Guid value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Guid value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -157,10 +155,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Diagnostics.DebuggerTypeProxyAttribute(typeof(VoDebugView))]
Expand Down Expand Up @@ -114,10 +112,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Guid value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Guid value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -157,10 +155,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Int32 value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Int32 value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ public class VogenTypesFactory : global::System.Text.Json.Serialization.JsonConv
#pragma warning disable CS8669, CS8632
// Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
#pragma warning disable CS1591
using Vogen;

[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(VoSystemTextJsonConverter))]
Expand Down Expand Up @@ -158,10 +156,10 @@ private readonly global::System.Diagnostics.StackTrace _stackTrace = null!;
/// If validation is provided, and it fails, an error will be returned.
/// </summary>
/// <param name = "value">The primitive value.</param>
/// <returns>A <see cref = "ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static ValueObjectOrError<Vo> TryFrom(System.Guid value)
/// <returns>A <see cref = "Vogen.ValueObjectOrError{T}"/> containing either the value object, or an error.</returns>
public static Vogen.ValueObjectOrError<Vo> TryFrom(System.Guid value)
{
return new ValueObjectOrError<Vo>(new Vo(value));
return new Vogen.ValueObjectOrError<Vo>(new Vo(value));
}

[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
Expand Down
Loading

0 comments on commit 57647ee

Please sign in to comment.