You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,11 +12,7 @@ A combination of generic Thread-Safe objects for .Net development.
12
12
13
13
---
14
14
15
-
<divalign="center">
16
-
17
-
<h2>🚀 <b>Now with .NET 8 support and built-in Source Generators!</b> 🚀</h2>
18
-
19
-
</div>
15
+
## 🚀 Now with .NET 8 support and built-in Source Generators! 🚀
20
16
21
17
> -**.NET 8**: Take advantage of the latest .NET features and performance improvements.
22
18
> -**Source Generators**: Eliminate boilerplate and let the library generate thread-safe, bindable properties for you automatically!
@@ -77,7 +73,7 @@ A simple C# repository containing a few basic useful Thread-Safe Objects.
77
73
78
74
## Source Generators
79
75
80
-
The `ThunderDesign.Net-PCL.SourceGenerators` project provides Roslyn-based source generators that automate the creation of common boilerplate code for thread-safe and bindable objects in this library. By including this package in your project, you can reduce repetitive code and ensure consistency across your data and collection classes.
76
+
The `ThunderDesign.Net-PCL.Threading` project provides Roslyn-based source generators that automate the creation of common boilerplate code for thread-safe and bindable objects in this library. By including this package in your project, you can reduce repetitive code and ensure consistency across your data and collection classes.
81
77
82
78
### What does it do?
83
79
@@ -91,7 +87,7 @@ The `ThunderDesign.Net-PCL.SourceGenerators` project provides Roslyn-based sourc
91
87
### How to use
92
88
93
89
1.**Add the NuGet package:**
94
-
Reference the `ThunderDesign.Net-PCL.SourceGenerators` package in your project. If you are building from source, add a project reference to `ThunderDesign.Net-PCL.SourceGenerators.csproj`.
90
+
Reference the `ThunderDesign.Net-PCL.Threading` package in your project. If you are building from source, add a project reference to `ThunderDesign.Net-PCL.SourceGenerators.csproj`.
95
91
96
92
2.**Annotate your fields:**
97
93
Use `[BindableProperty]` or `[Property]` attributes on your fields to indicate which properties should be generated. The generator will handle the rest.
0 commit comments