#sourcegenerators résultats de recherche

Was playing with Source Generators over the weekend. Created StructEquality generator for automatically creating equality members for structs. Eventually, I want to create a generator for creating struct-based records. #csharp, #sourcegenerators


Ok, the first draft version of StructRecord source generator is ready. The source code: github.com/SergeyTeplyako… And the nuget package: nuget.org/packages/Struc… #csharp #sourcegenerators


The next building block for implementing 'StructRecordsGenerator' is ready. I've implemented 'GenerateToStringAttribute' that generates 'ToString' impl the same way the records ToString is generated. Works for structs and classes. #csharp #sourcegenerators


Do you use them in your projects? If so please share the examples 🙏. #dotnet #sourcegenerators

pawel_lukasik's tweet image. Do you use them in your projects? If so please share the examples 🙏.

#dotnet #sourcegenerators

Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI

wieslawsoltes's tweet image. Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI
wieslawsoltes's tweet image. Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI

C# Incremental Source Generator Not Triggering build when generated files are modified stackoverflow.com/questions/7207… #csharp #msbuild #sourcegenerators #csharpsourcegenerator

overflow_meme's tweet image. C# Incremental Source Generator Not Triggering build when generated files are modified stackoverflow.com/questions/7207… #csharp #msbuild #sourcegenerators #csharpsourcegenerator

⚡ Master Incremental Source Generators in C#! Boost performance with cache-friendly code gen, examples & best practices. 👉blog.elmah.io/mastering-incr… #DotNet #CSharp #SourceGenerators


Another day, another C# source generator. Generates classes based on example json. #csharp #sourcegenerators @dotnet @davidwengier


I will give it a try, @LaylaCodesIt. Thanks for the inspiration and the tips. My first stream shall be early 2022. The topic is mostly likely going to be incremental #SourceGenerators in #Roslyn.

0x_F0's tweet image. I will give it a try, @LaylaCodesIt.
Thanks for the inspiration and the tips.
My first stream shall be early 2022.
The topic is mostly likely going to be incremental #SourceGenerators in #Roslyn.

Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz. Boilerplate kodlara veda edin, hız ve standart kazanın! 📖 Detaylar: iakademi.com/blog #dotnet #csharp #SourceGenerators #devcommunity

iakademiegitim's tweet image. 🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz.
Boilerplate kodlara veda edin, hız ve standart kazanın!
📖 Detaylar: iakademi.com/blog

#dotnet #csharp #SourceGenerators #devcommunity

🤯 When working with source generators, @JetBrainsRider will let you Ctrl+Click to the definitions. You can also find partial definitions that are generated. 💯 Thank you. 🥹 #dotnet #csharp #sourcegenerators


🔧 Source Generators: A powerful addition in .NET 8, source generators help automate code generation during compilation. They simplify tasks, eliminate boilerplate code, and boost developer productivity. 🛠️ #SourceGenerators #ProductivityBoost


🎥 New video: Source Generators | Source Generators let C# #devs inspect user #code as it is compiled. It can create new C# source files on the fly that are added to the user's compilation. Watch @jernej_kavka & @chiser99 discuss #sourcegenerators ➡️ youtu.be/3ObZSNeBVac

SSWChina's tweet image. 🎥 New video: Source Generators | Source Generators   let C# #devs inspect user #code as it is compiled. It can create new C#   source files on the fly that are added to the user's compilation. Watch   @jernej_kavka & @chiser99 discuss #sourcegenerators ➡️ youtu.be/3ObZSNeBVac

💡See files emitted by #SourceGenerators by adding these properties to your (*.csproj) project file: <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)Generated</CompilerGeneratedFilesOutputPath>


Code generation is a great way to apply patterns consistently across a solution or to create multiple similar classes based on some outside input file. Here's an example of how .Net Source Generators are developed: bit.ly/3dP496G #SourceGenerators #CodeGenerators

TransformLabsHQ's tweet image. Code generation is a great way to apply patterns consistently across a solution or to create multiple similar classes based on some outside input file. Here&apos;s an example of how .Net Source Generators are developed: bit.ly/3dP496G

#SourceGenerators #CodeGenerators

What's the current story about #dotnet #sourcegenerators that generate code from YAML/JSON files? Can I generate around 250k LOC in a performant way? I.e., no updates when the original file is unchanged?


🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz. Boilerplate kodlara veda edin, hız ve standart kazanın! 📖 Detaylar: iakademi.com/blog #dotnet #csharp #SourceGenerators #devcommunity

iakademiegitim's tweet image. 🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz.
Boilerplate kodlara veda edin, hız ve standart kazanın!
📖 Detaylar: iakademi.com/blog

#dotnet #csharp #SourceGenerators #devcommunity

🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz. Boilerplate kodlara veda edin, hız ve standart kazanın! 📖 Detaylar: iakademi.com/blog #dotnet #csharp #SourceGenerators #devcommunity


⚡ Master Incremental Source Generators in C#! Boost performance with cache-friendly code gen, examples & best practices. 👉blog.elmah.io/mastering-incr… #DotNet #CSharp #SourceGenerators


🚀 C# Source Generators effizient nutzen & richtig debuggen! Christian Nagel zeigt, wie du mit cleveren Erweiterungen mehr aus deiner Entwicklung rausholst – inkl. Tipps & Tricks für die Praxis! 🧑‍💻🛠️ #CSharp #SourceGenerators #BASTAcon 🔗 basta.net/net-framework-…

BASTAcon's tweet image. 🚀 C# Source Generators effizient nutzen &amp;amp; richtig debuggen! Christian Nagel zeigt, wie du mit cleveren Erweiterungen mehr aus deiner Entwicklung rausholst – inkl. Tipps &amp;amp; Tricks für die Praxis! 🧑‍💻🛠️

#CSharp #SourceGenerators #BASTAcon

🔗 basta.net/net-framework-…

🚀 Découvrez Mapperly Mon dernier article montre comment cet outil améliore les performances! 👉 Lien ici : codewithfrenchy.com/posts/performa… #dotnet #sourcegenerators #performance


One of those days I need to glue together a variety of skills. #AI #PromptEngineering #SourceGenerators #Csharp


The hands-on approach to C# was so much valuable that we are definitely going to use it in our next project. Thank you everyone who joined 🤝 #EducationInnovation #Csharp #sourcegenerators #sdk #dotnet #dotnet #buildingbots #invaluableinsights #expertguidance


Date : 15th April 2024, Time : Kenya 1 PM, Nigeria & Morocco 11 AM, Ghana 10:00 AM, Egypt 12:00 PM 🎤 Presented by Samson Amaugo, MCT & Microsoft MVP #EducationInnovation #Csharp #sourcegenerators #sdk


Do you use them in your projects? If so please share the examples 🙏. #dotnet #sourcegenerators

pawel_lukasik's tweet image. Do you use them in your projects? If so please share the examples 🙏.

#dotnet #sourcegenerators

Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

#SourceGenerators have limitations which CodeFactory does not. Authoring custom .NET automation commands for any common/repetitive plumbing code are straightforward. No need to rely on compile time, no reflection, just 100% design-time automation generated within Visual Studio.

Anyone looking at #codegenerators should learn more about the design-time code generation available in #CodeFactory for Visual Studio '22. Watch CodeFactory create a repository and Web API rest service. #DotNet8 #dotnet #dotnetconf



Just discovered the magic of Source Generators in C#! Generating code on the fly is a game-changer! tinyurl.com/mtxk8x2m @CsharpCorner #SourceGenerators #CodingNinjas #programming #FutureOfWork #TechNews #Productivity #Trending #webdevelopment #goals


Just discovered Source Generators in C#! They're a game-changer for code generation, making my development life so much easier. tinyurl.com/mtxk8x2m @CsharpCorner #Programming #Efficiency #SourceGenerators #Devlife #fridaymorning #developers


Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

¡No te puedes perder nuestro nuevo #AdevintaSpainMeetup! 👉 @ArielAmorGarca1 de Lidl International Hub, explicará cómo maximizar el rendimiento con #SourceGenerators y evitar la reflexión en tiempo de ejecución. 👉 Y @nucliweb, Adevintan experto en #WebPerformance, ofrecerá un…

AdevintaSpain's tweet image. ¡No te puedes perder nuestro nuevo #AdevintaSpainMeetup!

👉 @ArielAmorGarca1 de Lidl International Hub, explicará cómo maximizar el rendimiento con #SourceGenerators y evitar la reflexión en tiempo de ejecución.

👉 Y @nucliweb, Adevintan experto en #WebPerformance, ofrecerá un…

Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

Aucun résultat pour "#sourcegenerators"

Was playing with Source Generators over the weekend. Created StructEquality generator for automatically creating equality members for structs. Eventually, I want to create a generator for creating struct-based records. #csharp, #sourcegenerators


Ok, the first draft version of StructRecord source generator is ready. The source code: github.com/SergeyTeplyako… And the nuget package: nuget.org/packages/Struc… #csharp #sourcegenerators


Another day, another C# source generator. Generates classes based on example json. #csharp #sourcegenerators @dotnet @davidwengier


Do you use them in your projects? If so please share the examples 🙏. #dotnet #sourcegenerators

pawel_lukasik's tweet image. Do you use them in your projects? If so please share the examples 🙏.

#dotnet #sourcegenerators

C# Incremental Source Generator Not Triggering build when generated files are modified stackoverflow.com/questions/7207… #csharp #msbuild #sourcegenerators #csharpsourcegenerator

overflow_meme's tweet image. C# Incremental Source Generator Not Triggering build when generated files are modified stackoverflow.com/questions/7207… #csharp #msbuild #sourcegenerators #csharpsourcegenerator

Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. bit.ly/SourceGenerato… #dotnet #CodePerformance #SourceGenerators #MVPBuzz

realDotNetDave's tweet image. Microsoft .NET Source Generators: Have you used a source generator yet? Check out these articles that shows how to use them to speed up code performance. 
bit.ly/SourceGenerato…
#dotnet #CodePerformance #SourceGenerators #MVPBuzz

Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI

wieslawsoltes's tweet image. Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI
wieslawsoltes's tweet image. Drawing #Svg tiger using #CSharp compile-time generated by #SourceGenerators using #SkiaSharp with #AvaloniaUI

The next building block for implementing 'StructRecordsGenerator' is ready. I've implemented 'GenerateToStringAttribute' that generates 'ToString' impl the same way the records ToString is generated. Works for structs and classes. #csharp #sourcegenerators


🚀 C# Source Generators effizient nutzen & richtig debuggen! Christian Nagel zeigt, wie du mit cleveren Erweiterungen mehr aus deiner Entwicklung rausholst – inkl. Tipps & Tricks für die Praxis! 🧑‍💻🛠️ #CSharp #SourceGenerators #BASTAcon 🔗 basta.net/net-framework-…

BASTAcon's tweet image. 🚀 C# Source Generators effizient nutzen &amp;amp; richtig debuggen! Christian Nagel zeigt, wie du mit cleveren Erweiterungen mehr aus deiner Entwicklung rausholst – inkl. Tipps &amp;amp; Tricks für die Praxis! 🧑‍💻🛠️

#CSharp #SourceGenerators #BASTAcon

🔗 basta.net/net-framework-…

🎥 New video: Source Generators | Source Generators let C# #devs inspect user #code as it is compiled. It can create new C# source files on the fly that are added to the user's compilation. Watch @jernej_kavka & @chiser99 discuss #sourcegenerators ➡️ youtu.be/3ObZSNeBVac

SSWChina's tweet image. 🎥 New video: Source Generators | Source Generators   let C# #devs inspect user #code as it is compiled. It can create new C#   source files on the fly that are added to the user&apos;s compilation. Watch   @jernej_kavka &amp;amp; @chiser99 discuss #sourcegenerators ➡️ youtu.be/3ObZSNeBVac

🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz. Boilerplate kodlara veda edin, hız ve standart kazanın! 📖 Detaylar: iakademi.com/blog #dotnet #csharp #SourceGenerators #devcommunity

iakademiegitim's tweet image. 🚀 .NET’te Source Generators ile derleme sırasında class declaration’ları yakalayabilir ve otomatik kod üretebilirsiniz.
Boilerplate kodlara veda edin, hız ve standart kazanın!
📖 Detaylar: iakademi.com/blog

#dotnet #csharp #SourceGenerators #devcommunity

Code generation is a great way to apply patterns consistently across a solution or to create multiple similar classes based on some outside input file. Here's an example of how .Net Source Generators are developed: bit.ly/3dP496G #SourceGenerators #CodeGenerators

TransformLabsHQ's tweet image. Code generation is a great way to apply patterns consistently across a solution or to create multiple similar classes based on some outside input file. Here&apos;s an example of how .Net Source Generators are developed: bit.ly/3dP496G

#SourceGenerators #CodeGenerators

Join us for a live webinar with Stefan Pölz (@0x_F0) about #Roslyn #SourceGenerators this Wednesday, February 23rd, 17:00 UTC. Learn how to never send a human to do a machine's job again. Reserve your seat now: postsharp.ac-page.com/stefan-polz-we… #CSharp #DotNet

AjaBrezinova's tweet image. Join us for a live webinar with Stefan Pölz (@0x_F0) about  #Roslyn #SourceGenerators this Wednesday, February 23rd, 17:00 UTC. Learn how to never send a human to do a machine&apos;s job again.

Reserve your seat now: 
postsharp.ac-page.com/stefan-polz-we…

#CSharp #DotNet

¡No te puedes perder nuestro nuevo #AdevintaSpainMeetup! 👉 @ArielAmorGarca1 de Lidl International Hub, explicará cómo maximizar el rendimiento con #SourceGenerators y evitar la reflexión en tiempo de ejecución. 👉 Y @nucliweb, Adevintan experto en #WebPerformance, ofrecerá un…

AdevintaSpain's tweet image. ¡No te puedes perder nuestro nuevo #AdevintaSpainMeetup!

👉 @ArielAmorGarca1 de Lidl International Hub, explicará cómo maximizar el rendimiento con #SourceGenerators y evitar la reflexión en tiempo de ejecución.

👉 Y @nucliweb, Adevintan experto en #WebPerformance, ofrecerá un…

I will give it a try, @LaylaCodesIt. Thanks for the inspiration and the tips. My first stream shall be early 2022. The topic is mostly likely going to be incremental #SourceGenerators in #Roslyn.

0x_F0's tweet image. I will give it a try, @LaylaCodesIt.
Thanks for the inspiration and the tips.
My first stream shall be early 2022.
The topic is mostly likely going to be incremental #SourceGenerators in #Roslyn.

Talking at the #JBDotNetDays 2022 last week was [Pure]ly fantastic. The event was flawlessly organized and each session and speaker superb. I've updated my demo on #Roslyn #SourceGenerators to cover member accessibility within EqualityComparer`1 as well. github.com/Flash0ver/F0-T…

0x_F0's tweet image. Talking at the #JBDotNetDays 2022 last week was [Pure]ly fantastic.
The event was flawlessly organized and each session and speaker superb.

I&apos;ve updated my demo on #Roslyn #SourceGenerators to cover member accessibility within EqualityComparer`1 as well.

github.com/Flash0ver/F0-T…

The more I scroll through the excellent sessions of the agenda, the more honored I am to get the chance to talk alongside such great speakers and share my know-how on #csharp #SourceGenerators as well as #MutationTesting in #dotnet at the #NDCOslo 2021.

0x_F0's tweet image. The more I scroll through the excellent sessions of the agenda, the more honored I am to get the chance to talk alongside such great speakers and share my know-how on #csharp #SourceGenerators as well as #MutationTesting in #dotnet at the #NDCOslo 2021.

Loading...

Something went wrong.


Something went wrong.


United States Trends