Skip to content

Commit 4d6bdfa

Browse files
committed
fix readme
1 parent d58b6d8 commit 4d6bdfa

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# SimpleMVVM
1+
# SimpleViewModel
22

3-
A lightweight WPF MVVM framework with automatic source generation that eliminates boilerplate code while maintaining full control over your view models.
3+
A lightweight WPF ViewModel framework with automatic source generation that eliminates boilerplate code while maintaining full control over your view models.
44

55
## Features
66

@@ -16,16 +16,16 @@ A lightweight WPF MVVM framework with automatic source generation that eliminate
1616
### Installation
1717

1818
```xml
19-
<PackageReference Include="SimpleMVVM" Version="0.9.0" />
19+
<PackageReference Include="SimpleViewModel" Version="0.9.0" />
2020
```
2121

2222
### Basic Usage
2323

2424
1. **Create a ViewModel**:
2525

2626
```csharp
27-
using SimpleMVVM;
28-
using SimpleMVVM.BaseClasses;
27+
using SimpleViewModel;
28+
using SimpleViewModel.BaseClasses;
2929

3030
[ViewModel]
3131
public partial class MainViewModel : BaseViewModel
@@ -126,7 +126,7 @@ public partial class DocumentViewModel : BaseViewModel
126126

127127
### Integration with Dependency Injection
128128

129-
SimpleMVVM works seamlessly with dependency injection containers:
129+
SimpleViewModel works seamlessly with dependency injection containers:
130130

131131
```csharp
132132
// Using SimpleInjection (companion package)
@@ -151,7 +151,7 @@ public partial class MainViewModel : BaseViewModel
151151

152152
## How It Works
153153

154-
SimpleMVVM uses Roslyn source generators to analyze your code at compile time and automatically generate:
154+
SimpleViewModel uses Roslyn source generators to analyze your code at compile time and automatically generate:
155155

156156
1. **Command Classes**: Each `[Command]` method gets a corresponding `ICommand` implementation
157157
2. **Command Properties**: Properties that expose the commands for data binding

0 commit comments

Comments
 (0)