#sourcegenerator search results

Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out: @dotnet #csharp #sourcegenerator nuget.org/packages/Micro…

davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…

Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat. #dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class. @JetBrainsRider made it super easy. #aspnetcore #csharp

buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp

On my way to #SourceGenerator #dotnet #dotnetcore I'm going to port #MappingGenerator to this new API github.com/cezarypiatek/M… Use 🔄or ♥️ buttons to let me and others know if you are interested in the outcome.

cezary_piatek's tweet image. On my way to #SourceGenerator #dotnet #dotnetcore 
I'm going to port #MappingGenerator to this new API github.com/cezarypiatek/M… Use 🔄or ♥️ buttons to let me and others know if you are interested in the outcome.

24x times faster 🔥 new release Supernova.Enum.Generators 🔥 -- v1.0.17 - Added TryParseFast github.com/EngRajabi/Enum… #dotnet #sourcegenerator #netcore

mohsen_rajabi72's tweet image. 24x times faster

🔥 new release Supernova.Enum.Generators 🔥

-- v1.0.17

- Added TryParseFast

github.com/EngRajabi/Enum…

#dotnet #sourcegenerator #netcore

I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.

0x_F0's tweet image. I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.
0x_F0's tweet image. I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.

Finally got it working... #SourceGenerator for #dotnet that will automatically add code attributes to your @opentelemetry spans. Further, it will add a @github link to the repo, file and even Line that generated it! All from adding a package and no code changes.

MartinDotNet's tweet image. Finally got it working... #SourceGenerator for #dotnet that will automatically add code attributes to your @opentelemetry spans.

Further, it will add a @github link to the repo, file and even Line that generated it!

All from adding a package and no code changes.

When starting a new source generator, the first question is, "What are you trying to accomplish?". Following closely behind is, "Does this make sense as a source generator?" Learn how to build a #SourceGenerator for #csharp: bit.ly/3xfGtje J. Allen #InfoQ #dotnet

InfoQ's tweet image. When starting a new source generator, the first question is, "What are you trying to accomplish?". Following closely behind is, "Does this make sense as a source generator?" Learn how to build a #SourceGenerator for #csharp: bit.ly/3xfGtje 
 
J. Allen

#InfoQ #dotnet

I'm going to experiment with a C# #sourcegenerator today. 💪


Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

I am so confused by c# source generators. I just wasted time on a simple generator: - used VS16.6 on one machine instead of 16.8 - old packages - forgot VS restart - seeing generated code is not supported I clearly see how this can take down VS 😳 #dotnetcore #sourcegenerator


Creating a #sourcegenerator gets a bit more approachable in VS by installing the Roslyn SDK workload and use the Syntax Visualizer window, docs.microsoft.com/en-us/dotnet/c…


BPZ feature update! v1.5.0 Support for `FrameworkPropertyMetadataOptions` flags: These are most useful for `BindsTwoWayByDefault` and attached properties that wish to specify `Inherits`. github.com/IGood/boilerpl… #dotnet #csharp #sourcegenerator #wpf #bpz #boilerplatezero

github.com

Releases · IGood/boilerplatezero

boilerplatezero is a collection of C# source generators - IGood/boilerplatezero


a #sourcegenerator is generating the implementation of a partial method, works as expected after following channel9.msdn.com/events/dotnetC… , but VS Code complains. #Net5 #csharp9

lamorchia's tweet image. a #sourcegenerator is generating the implementation of a partial method, works as expected after following channel9.msdn.com/events/dotnetC…
, but VS Code complains. 
#Net5 #csharp9

I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer. - Maui som kommer i .Net 6 - Source Generator fra .Net 5 enso.no/blogg/fagkveld… #sharingiscaring #maui #sourcegenerator

EnsoAS's tweet image. I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer.

- Maui som kommer i .Net 6 
- Source Generator fra .Net 5

enso.no/blogg/fagkveld…

#sharingiscaring 
#maui
#sourcegenerator
EnsoAS's tweet image. I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer.

- Maui som kommer i .Net 6 
- Source Generator fra .Net 5

enso.no/blogg/fagkveld…

#sharingiscaring 
#maui
#sourcegenerator

BPZ feature update! v1.8.0 Now supports validation callbacks. Generates (more/missing) documentation for better clarity & to also satisfy compiler warning CS1591. github.com/IGood/boilerpl… #dotnet #csharp #sourcegenerator #wpf #bpz #boilerplatezero

github.com

Releases · IGood/boilerplatezero

boilerplatezero is a collection of C# source generators - IGood/boilerplatezero


I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates github.com/Flash0ver/F0.G…

0x_F0's tweet image. I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates
github.com/Flash0ver/F0.G…
0x_F0's tweet image. I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates
github.com/Flash0ver/F0.G…

The source generator project must target netstandard2.0 , now VS code knows that the implementation exists. #sourcegenerator #csharp9


こんにちは!沙凍亜衣です。Unity向け超簡単ソースジェネレーターはいかがですか? Roslynよりシンプルで使いやすく、コード生成を効率化します✨。ビルドイベントで自動生成も可能!詳細はGitHubをチェックしてくださいね! #Unity3d 🚀 #SourceGenerator github.com/sator-imaging/…

github.com

GitHub - sator-imaging/Unity-AltSourceGenerator: Ease-of-Use Source Generator Alternative for Unity

Ease-of-Use Source Generator Alternative for Unity - sator-imaging/Unity-AltSourceGenerator


📢 New blog post: "Learning AI function calling in C# with Llama 3.2 SLM and Ollama running on your machine" #AI #csharp #sourcegenerator #dotnet #ollama #slm laurentkempe.com/2024/10/28/lea…


Why does #csharp not support inline 'Assembly'? #MSIL I see many options in combination with source generators... #SourceGenerator


24x times faster 🔥 new release Supernova.Enum.Generators 🔥 -- v1.0.17 - Added TryParseFast github.com/EngRajabi/Enum… #dotnet #sourcegenerator #netcore

mohsen_rajabi72's tweet image. 24x times faster

🔥 new release Supernova.Enum.Generators 🔥

-- v1.0.17

- Added TryParseFast

github.com/EngRajabi/Enum…

#dotnet #sourcegenerator #netcore

Want to learn how to use .NET Source Generator to organize your minimal APIs with C#? 🚀 Watch my new YouTube video and discover how to generate code like magic. 🔮 youtu.be/zf5j-W11-qo Retweet and share with your fellow developers. 🙌 #csharp #dotnet #sourcegenerator

mhdbouk's tweet card. How to Organize Your .NET Minimal APIs with Source Generator

youtube.com

YouTube

How to Organize Your .NET Minimal APIs with Source Generator


Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out: @dotnet #csharp #sourcegenerator nuget.org/packages/Micro…

davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…

Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

🇦🇺🎥 New video: Build your own #SourceGenerator | Curious as to how you can #build your own Source Generator? @jernej_kavka & Senior Compiler Engineer at @Microsoft @Chiser99 talk about #building & #configuring source generators. Watch it here ➡️ youtube.com/watch?v=abMAW1…


Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

No results for "#sourcegenerator"

24x times faster 🔥 new release Supernova.Enum.Generators 🔥 -- v1.0.17 - Added TryParseFast github.com/EngRajabi/Enum… #dotnet #sourcegenerator #netcore

mohsen_rajabi72's tweet image. 24x times faster

🔥 new release Supernova.Enum.Generators 🔥

-- v1.0.17

- Added TryParseFast

github.com/EngRajabi/Enum…

#dotnet #sourcegenerator #netcore

On my way to #SourceGenerator #dotnet #dotnetcore I'm going to port #MappingGenerator to this new API github.com/cezarypiatek/M… Use 🔄or ♥️ buttons to let me and others know if you are interested in the outcome.

cezary_piatek's tweet image. On my way to #SourceGenerator #dotnet #dotnetcore 
I'm going to port #MappingGenerator to this new API github.com/cezarypiatek/M… Use 🔄or ♥️ buttons to let me and others know if you are interested in the outcome.

I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer. - Maui som kommer i .Net 6 - Source Generator fra .Net 5 enso.no/blogg/fagkveld… #sharingiscaring #maui #sourcegenerator

EnsoAS's tweet image. I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer.

- Maui som kommer i .Net 6 
- Source Generator fra .Net 5

enso.no/blogg/fagkveld…

#sharingiscaring 
#maui
#sourcegenerator
EnsoAS's tweet image. I tillegg til sosiale arrangement er det også viktig med faglig innhold. Forrige kvelden kjørte fagkveld med følgende teamer.

- Maui som kommer i .Net 6 
- Source Generator fra .Net 5

enso.no/blogg/fagkveld…

#sharingiscaring 
#maui
#sourcegenerator

Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out: @dotnet #csharp #sourcegenerator nuget.org/packages/Micro…

davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…
davidpine7's tweet image. Earlier this year, around //build — some NuGet packages shipped. One of which is named AutoClient. It relies on a source-generator, emitting interface implementations and DI hooks for REST API HTTP clients, check it out:

@dotnet #csharp #sourcegenerator

nuget.org/packages/Micro…

Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. dotnettips.wordpress.com/2023/04/14/per… #sourcegenerator #automation #dotnet7

realDotNetDave's tweet image. Automate code generation with ease using source generators in #dotnet! With #CSharp and regular expressions, you can create powerful tools that save you time and effort. Check out my latest blog post to learn more. 
dotnettips.wordpress.com/2023/04/14/per…
#sourcegenerator #automation #dotnet7

When starting a new source generator, the first question is, "What are you trying to accomplish?". Following closely behind is, "Does this make sense as a source generator?" Learn how to build a #SourceGenerator for #csharp: bit.ly/3xfGtje J. Allen #InfoQ #dotnet

InfoQ's tweet image. When starting a new source generator, the first question is, "What are you trying to accomplish?". Following closely behind is, "Does this make sense as a source generator?" Learn how to build a #SourceGenerator for #csharp: bit.ly/3xfGtje 
 
J. Allen

#InfoQ #dotnet

Finally got it working... #SourceGenerator for #dotnet that will automatically add code attributes to your @opentelemetry spans. Further, it will add a @github link to the repo, file and even Line that generated it! All from adding a package and no code changes.

MartinDotNet's tweet image. Finally got it working... #SourceGenerator for #dotnet that will automatically add code attributes to your @opentelemetry spans.

Further, it will add a @github link to the repo, file and even Line that generated it!

All from adding a package and no code changes.

Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat. #dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class. @JetBrainsRider made it super easy. #aspnetcore #csharp

buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp
buhakmeh's tweet image. Polymorphic serialization/deserialization in #dotnet 7 preview 5 is neat.

#dotnet folks hate attributes 🤷‍♂️, so I wrote a #sourcegenerator that finds all derived types and creates the attributes for you in a partial class.

@JetBrainsRider made it super easy. #aspnetcore #csharp

a #sourcegenerator is generating the implementation of a partial method, works as expected after following channel9.msdn.com/events/dotnetC… , but VS Code complains. #Net5 #csharp9

lamorchia's tweet image. a #sourcegenerator is generating the implementation of a partial method, works as expected after following channel9.msdn.com/events/dotnetC…
, but VS Code complains. 
#Net5 #csharp9

I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.

0x_F0's tweet image. I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.
0x_F0's tweet image. I see. I'm afraid I couldn't come up with a constant solution (still waiting on Extension Everything for C#). But I got a #SourceGenerator running which generates a reflection-free lookup that is significantly faster than my reflection-based implementation. If this is of any use.

I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates github.com/Flash0ver/F0.G…

0x_F0's tweet image. I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates
github.com/Flash0ver/F0.G…
0x_F0's tweet image. I just published the next version of my #SourceGenerator package, with a switch expression/statement (depending on the #CSharp LangVersion), retrieving the name of enum members, inspired by @davidfowl's talk "Implementation Details Matter" at @iOassociates
github.com/Flash0ver/F0.G…

Loading...

Something went wrong.


Something went wrong.


United States Trends