mirror of
https://github.com/DarthAffe/HPPH.git
synced 2025-12-12 13:28:37 +00:00
Added nullable annotation for all generated files
This commit is contained in:
parent
1b929ac886
commit
fed16da8ce
@ -15,6 +15,8 @@ public class ColorSortSourceGenerator : IIncrementalGenerator
|
|||||||
#region Properties & Fields
|
#region Properties & Fields
|
||||||
|
|
||||||
private const string SORT_GENERATOR_ATTRIBUTE_SOURCE = """
|
private const string SORT_GENERATOR_ATTRIBUTE_SOURCE = """
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
[AttributeUsage(AttributeTargets.Method)]
|
[AttributeUsage(AttributeTargets.Method)]
|
||||||
@ -79,6 +81,8 @@ public class ColorSortSourceGenerator : IIncrementalGenerator
|
|||||||
foreach (KeyValuePair<(string @namespace, string @class, string classModifier), string> data in sourceMapping)
|
foreach (KeyValuePair<(string @namespace, string @class, string classModifier), string> data in sourceMapping)
|
||||||
{
|
{
|
||||||
context.AddSource($"{data.Key.@class}.g.cs", SourceText.From($$"""
|
context.AddSource($"{data.Key.@class}.g.cs", SourceText.From($$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.Buffers;
|
using System.Buffers;
|
||||||
|
|
||||||
namespace {{data.Key.@namespace}};
|
namespace {{data.Key.@namespace}};
|
||||||
|
|||||||
@ -18,6 +18,8 @@ internal class Average : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatAverage(ColorFormatData colorFormat)
|
private static string GenerateColorFormatAverage(ColorFormatData colorFormat)
|
||||||
{
|
{
|
||||||
return $$"""
|
return $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
@ -36,6 +38,8 @@ internal class Average : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatInterfaceAverage()
|
private static string GenerateColorFormatInterfaceAverage()
|
||||||
{
|
{
|
||||||
return """
|
return """
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
|
|||||||
@ -25,6 +25,8 @@ internal class Colors : IGeneratorFeature
|
|||||||
=> colorFormat.Bpp switch
|
=> colorFormat.Bpp switch
|
||||||
{
|
{
|
||||||
3 => $$"""
|
3 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
@ -89,6 +91,8 @@ internal class Colors : IGeneratorFeature
|
|||||||
""",
|
""",
|
||||||
|
|
||||||
4 => $$"""
|
4 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
@ -159,6 +163,8 @@ internal class Colors : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatCode(ColorFormatData colorFormat)
|
private static string GenerateColorFormatCode(ColorFormatData colorFormat)
|
||||||
{
|
{
|
||||||
return $$"""
|
return $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormat{{colorFormat.Format}} : IColorFormat
|
public sealed partial class ColorFormat{{colorFormat.Format}} : IColorFormat
|
||||||
@ -188,6 +194,8 @@ internal class Colors : IGeneratorFeature
|
|||||||
{
|
{
|
||||||
StringBuilder sb = new();
|
StringBuilder sb = new();
|
||||||
sb.AppendLine("""
|
sb.AppendLine("""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
|
|||||||
@ -20,6 +20,8 @@ internal class MinMax : IGeneratorFeature
|
|||||||
=> colorFormat.Bpp switch
|
=> colorFormat.Bpp switch
|
||||||
{
|
{
|
||||||
3 => $$"""
|
3 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
@ -73,6 +75,8 @@ internal class MinMax : IGeneratorFeature
|
|||||||
""",
|
""",
|
||||||
|
|
||||||
4 => $$"""
|
4 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
@ -133,6 +137,8 @@ internal class MinMax : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatMinMax(ColorFormatData colorFormat)
|
private static string GenerateColorFormatMinMax(ColorFormatData colorFormat)
|
||||||
{
|
{
|
||||||
return $$"""
|
return $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
@ -151,6 +157,8 @@ internal class MinMax : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatInterfaceMinMax()
|
private static string GenerateColorFormatInterfaceMinMax()
|
||||||
{
|
{
|
||||||
return """
|
return """
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
|
|||||||
@ -18,6 +18,8 @@ internal class Quantize : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatQuantize(ColorFormatData colorFormat)
|
private static string GenerateColorFormatQuantize(ColorFormatData colorFormat)
|
||||||
{
|
{
|
||||||
return $$"""
|
return $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
@ -56,6 +58,8 @@ internal class Quantize : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatInterfaceQuantize()
|
private static string GenerateColorFormatInterfaceQuantize()
|
||||||
{
|
{
|
||||||
return """
|
return """
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
|
|||||||
@ -20,6 +20,8 @@ internal class Sum : IGeneratorFeature
|
|||||||
=> colorFormat.Bpp switch
|
=> colorFormat.Bpp switch
|
||||||
{
|
{
|
||||||
3 => $$"""
|
3 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
@ -58,6 +60,8 @@ internal class Sum : IGeneratorFeature
|
|||||||
""",
|
""",
|
||||||
|
|
||||||
4 => $$"""
|
4 => $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
// ReSharper disable ConvertToAutoProperty
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
@ -100,6 +104,8 @@ internal class Sum : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatSum(ColorFormatData colorFormat)
|
private static string GenerateColorFormatSum(ColorFormatData colorFormat)
|
||||||
{
|
{
|
||||||
return $$"""
|
return $$"""
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
@ -118,6 +124,8 @@ internal class Sum : IGeneratorFeature
|
|||||||
private static string GenerateColorFormatInterfaceSum()
|
private static string GenerateColorFormatInterfaceSum()
|
||||||
{
|
{
|
||||||
return """
|
return """
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
[AttributeUsage(AttributeTargets.Method)]
|
[AttributeUsage(AttributeTargets.Method)]
|
||||||
internal class ColorSortGeneratorAttribute(string dataTypeName, string sortValueName) : Attribute
|
internal class ColorSortGeneratorAttribute(string dataTypeName, string sortValueName) : Attribute
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Buffers;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Buffers;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatABGR : IColorFormat
|
public sealed partial class ColorFormatABGR : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatARGB : IColorFormat
|
public sealed partial class ColorFormatARGB : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatBGR : IColorFormat
|
public sealed partial class ColorFormatBGR : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatBGRA : IColorFormat
|
public sealed partial class ColorFormatBGRA : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatRGB : IColorFormat
|
public sealed partial class ColorFormatRGB : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
using System.Runtime.InteropServices;
|
#nullable enable
|
||||||
|
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace HPPH;
|
namespace HPPH;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public sealed partial class ColorFormatRGBA : IColorFormat
|
public sealed partial class ColorFormatRGBA : IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
namespace HPPH;
|
#nullable enable
|
||||||
|
|
||||||
|
namespace HPPH;
|
||||||
|
|
||||||
public partial interface IColorFormat
|
public partial interface IColorFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
// ReSharper disable ConvertToAutoProperty
|
#nullable enable
|
||||||
|
|
||||||
|
// ReSharper disable ConvertToAutoProperty
|
||||||
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
// ReSharper disable ConvertToAutoPropertyWhenPossible
|
||||||
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
// ReSharper disable ReplaceWithPrimaryConstructorParameter
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user