Category: roslyn

  • Pekspro.DataAnnotationValuesExtractor

    RSCG – Pekspro.DataAnnotationValuesExtractor     name Pekspro.DataAnnotationValuesExtractor nuget https://www.nuget.org/packages/Pekspro.DataAnnotationValuesExtractor/ link https://github.com/pekspro/DataAnnotationValuesExtractor author Pekspro Generates typed constants from DataAnnotations attributes ([Range], [StringLength], [Required], [Display]) at compile time — no reflection needed to read annotation values. How to use 1. Decorate your model with standard DataAnnotations: “`charp partial class Person { [Display(Name = “First name”)] [StringLength(100, MinimumLength = 3)]…

  • RSCG – Sundew.DiscriminatedUnions

    RSCG – Sundew.DiscriminatedUnions     name Sundew.DiscriminatedUnions nuget https://www.nuget.org/packages/Sundew.DiscriminatedUnions/ link https://github.com/sundews/Sundew.DiscriminatedUnions author Kim Hugener Ohlsen Generate tagged union   This is how you can use Sundew.DiscriminatedUnions . The code that you start with is The code that you will use is   The code that is generated is Code and pdf at https://ignatandrei.github.io/RSCG_Examples/v2/docs/Sundew.DiscriminatedUnions

  • RSCG – KnockOff

    RSCG – KnockOff     name KnockOff nuget https://www.nuget.org/packages/KnockOff/ link https://github.com/NeatooDotNet/KnockOff author Keith Voels Generating test stubs with mocking for interfaces   This is how you can use KnockOff . The code that you start with is The code that you will use is   The code that is generated is Code and pdf at…

  • RSCG – ErrorOrX

    RSCG – ErrorOrX     name ErrorOrX nuget https://www.nuget.org/packages/ErrorOrX/ link https://github.com/ANcpLua/ErrorOrX author Alexander Nachtmanns API results from Functional returns of ErroOrX   This is how you can use ErrorOrX . The code that you start with is The code that you will use is   The code that is generated is Code and pdf at…

  • RSCG – FastCloner

    RSCG – FastCloner     name FastCloner nuget https://www.nuget.org/packages/FastCloner/ link https://github.com/lofcz/FastCloner/ author Matěj Štágl Cloning objects   This is how you can use FastCloner . The code that you start with is The code that you will use is   The code that is generated is // // Generated: 2026-02-03 05:29:59 UTC #nullable enable using…

  • RSCG – OrderedBuildersGenerator

    RSCG – OrderedBuildersGenerator     name OrderedBuildersGenerator nuget https://www.nuget.org/packages/OrderedBuildersGenerator/ link https://github.com/Georgiy-Petrov/OrderedBuildersGenerator author Georgiy Petrov Generating builder classes with enforced property setting order   This is how you can use OrderedBuildersGenerator . The code that you start with is <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net10.0</TargetFramework> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup> <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath> </PropertyGroup> <ItemGroup> <PackageReference Include="OrderedBuildersGenerator" Version="1.0.0" PrivateAssets="all" OutputItemType="Analyzer"…

  • RSCG–Facet Search

    RSCG – Facet.Search     name Facet.Search nuget https://www.nuget.org/packages/Facet.Search/ link https://github.com/Tim-Maes/Facet.Search author Tim Maes Generating search from C# clasess and properties Integrating search in .NET applications   This is how you can use Facet.Search . The code that you start with is <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net10.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <PackageReference Include="Facet.Search" Version="0.1.1" />…

  • RSCG_Templating–additional files

    For generating a list of additional files included in project ( see https://github.com/helluvamatt/SvgIconGenerator ) I need to generated the list of them – and maybe an enum . So RSCG_Templating improve with a new attribute , [IGenerateDataFromAdditionalFiles(“FileInTemplating”)] partial class FileInTemplating { } What it does is to send to the template the list of additional…

  • Revisit RSCG_Static

    In 2023 I have created RSCG_Static as a way to mock static methods from classes ( think DateTime, Environment, Process) . From that time , the interfaces in C# have gained static keyword – so  –  a little improvement seems necessary . However, how can you mock a static method from a interface ? The…

  • RSCG – Silhouette

    RSCG – Silhouette     name Silhouette nuget https://www.nuget.org/packages/Silhouette/ link https://github.com/kevingosse/Silhouette author Kevin Gosse Profiling .net applications Measuring performance improvements   This is how you can use Silhouette . The code that you start with is <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net10.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <PublishAot>true</PublishAot> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <ItemGroup> <PackageReference Include="Silhouette" Version="3.2.0" /> </ItemGroup> <PropertyGroup> <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>…