Category: .NET
-
Package analyzer and Feature Matrix
I have started a .NET Tool,https://github.com/ignatandrei/PackageAnalyzer,that can analyze your solution and generate various statistics. The program can show you dependency matrix of projects The X on the diagonal shows that the project is not dependent on himself. The 1 shows that the project is dependent DIRECTLY on the other project ( read from left to…
-
RSCG – GoLive.Generator.BlazorInterop
RSCG – GoLive.Generator.BlazorInterop name GoLive.Generator.BlazorInterop nuget https://www.nuget.org/packages/GoLive.Generator.BlazorInterop/ link https://github.com/surgicalcoder/BlazorInteropGenerator author surgicalcoder Generating interop from C# to javascript for Blazor This is how you can use GoLive.Generator.BlazorInterop . 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 – Hsu.Sg.FluentMember
RSCG – Hsu.Sg.FluentMember name Hsu.Sg.FluentMember nuget https://www.nuget.org/packages/Hsu.Sg.FluentMember/ link https://github.com/hsu-net/source-generators author Net Hsu Adding builder pattern to classes This is how you can use Hsu.Sg.FluentMember . 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/Hsu.Sg.FluentMember
-
RSCG – QueryStringGenerator
RSCG – QueryStringGenerator name QueryStringGenerator nuget https://www.nuget.org/packages/QueryStringGenerator/ link https://github.com/tparviainen/query-string-generator author Tomi Parviainen Generate from string properties of a class a query string for a URL. This is how you can use QueryStringGenerator . The code that you start with is The code that you will use is The code that is…
-
RSCG – GenPack
RSCG – GenPack name GenPack nuget https://www.nuget.org/packages/GenPack/ link https://github.com/dimohy/GenPack author dimohy Generating Binary Serialization and properties for class This is how you can use GenPack . 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/GenPack
-
RSCG – Credfeto.Version.Information.Generator
RSCG – Credfeto.Version.Information.Generator name Credfeto.Version.Information.Generator nuget https://www.nuget.org/packages/Credfeto.Version.Information.Generator/ link https://github.com/credfeto/credfeto-version-constants-generator author Mark Ridgwell Embedding build information as compile time constants in C# projects. This is how you can use Credfeto.Version.Information.Generator . The code that you start with is The code that you will use is The code that is generated is Code…
-
RSCG – polytype
RSCG – polytype name polytype nuget https://www.nuget.org/packages/polytype/ link https://github.com/eiriktsarpalis/PolyType author Eirik Tsarpalis Generating shape like reflection from classes. See PolyType.Examples for more details This is how you can use polytype . The code that you start with is The code that you will use is The code that is generated is…
-
RSCG – Datacute.EmbeddedResourcePropertyGenerator
RSCG – Datacute.EmbeddedResourcePropertyGenerator name Datacute.EmbeddedResourcePropertyGenerator nuget https://www.nuget.org/packages/Datacute.EmbeddedResourcePropertyGenerator/ link https://github.com/datacute/EmbeddedResourcePropertyGenerator/ author Stephen Denne Generating class to access easy the embedded resource This is how you can use Datacute.EmbeddedResourcePropertyGenerator . The code that you start with is The code that you will use is The code that is generated is Code and pdf…
-
RSCG – rscg_queryables
RSCG – rscg_queryables name rscg_queryables nuget https://www.nuget.org/packages/rscg_queryables/ https://www.nuget.org/packages/rscg_queryablesCommon/ link https://github.com/ignatandrei/rscg_queryables author Andrei Ignat Generating code for .Where and .OrderBy by string,not by lambda This is how you can use rscg_queryables . The code that you start with is The code that you will use is The code that is generated is…
-
Watch2–part7–full test
Watch2 NuGet Package The Watch2 NuGet package extends the functionality of dotnet watch by adding features such as console clearing and delay handling. It outputs the same information as dotnet watch. 1. Wrapper Interfaces To facilitate testing,it is necessary to wrap various process creation classes from .NET (e.g.,Process => ProcessWrapper,ProcessStartInfo => ProcessStartInfoWrapper). This allows for…