Category: RSCG

  • RSCG – TeCLI

    RSCG – TeCLI     name TeCLI nuget https://www.nuget.org/packages/TeCLI/ link https://github.com/tyevco/TeCLI author Tyler Coles Parse Command line arguments   This is how you can use TeCLI . 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/TeCLI

  • RSCG – Program

    RSCG – Program   name Program nuget https://www.nuget.org/packages/Microsoft.AspNetCore.OpenApi link https://github.com/dotnet/aspnetcore/blob/70d851104f739fb906aabcd6a07c0935ce2549c9/src/Framework/AspNetCoreAnalyzers/src/SourceGenerators/PublicTopLevelProgramGenerator.cs#L11 author Microsoft Generating Program.cs class for testing purposes This is how you can use Program . The code that you start with is The code that you will use is The code that is generated is Code and pdf athttps://ignatandrei.github.io/RSCG_Examples/v2/docs/Program

  • RSCG – validly

    RSCG – validly   name validly nuget https://www.nuget.org/packages/validly/ link https://github.com/Hookyns/validly author Roman Jambor Generates validation code for C# classes based on attributes. This is how you can use validly . The code that you start with is The code that you will use is The code that is generated is Code and pdf athttps://ignatandrei.github.io/RSCG_Examples/v2/docs/validly

  • RSCG – Csvcsharp

    RSCG – Csvcsharp   name Csvcsharp nuget https://www.nuget.org/packages/Csvcsharp/ link https://github.com/nuskey8/Csv-CSharp author Yusuke Nakada Serializer for CSV files This is how you can use Csvcsharp . The code that you start with is The code that you will use is The code that is generated is Code and pdf athttps://ignatandrei.github.io/RSCG_Examples/v2/docs/Csvcsharp

  • RSCG – RapidEnum

    RSCG – RapidEnum     name RapidEnum nuget https://www.nuget.org/packages/RapidEnum/ link https://github.com/hanachiru/RapidEnum author hanachiru Generate enum values without reflection   This is how you can use RapidEnum . 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/RapidEnum

  • RSCG – VYaml

    RSCG – VYaml     name VYaml nuget https://www.nuget.org/packages/VYaml/ link https://github.com/hadashiA/VYaml author Hadashi A Serializing to/from YAML format   This is how you can use VYaml . 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/VYaml

  • RSCG – ConsoleAppFramework

    RSCG – ConsoleAppFramework     name ConsoleAppFramework nuget https://www.nuget.org/packages/ConsoleAppFramework/ link https://github.com/Cysharp/ConsoleAppFramework author Cysharp, Inc. Generating console parser for functions   This is how you can use ConsoleAppFramework . 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/ConsoleAppFramework

  • RSCG – kli.Localize

    RSCG – kli.Localize     name kli.Localize nuget https://www.nuget.org/packages/kli.Localize/ link https://github.com/kl1mm/localize author Tobias Klimm Generating localization files from json files   This is how you can use kli.Localize . 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/kli.Localize

  • RSCG – Unflat

    RSCG – Unflat     name Unflat nuget https://www.nuget.org/packages/Unflat/ link https://github.com/pstlnce/unflat author pstlnce DataReader to Object Model   This is how you can use Unflat . The code that you start with is The code that you will use is   The code that is generated is using System; using System.Data; using System.Data.Common; using System.Collections.Generic;…

  • RSCG – Facet

    RSCG – Facet     name Facet nuget https://www.nuget.org/packages/Facet/ link https://github.com/Tim-Maes/Facet/ author Tim Maes Custom generation and mapper   This is how you can use Facet . The code that you start with is <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup> <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath> </PropertyGroup> <ItemGroup> <PackageReference Include="Facet" Version="2.7.0" /> </ItemGroup> </Project> The code…