Skip to content

Commit 2abdfd1

Browse files
committed
Change MVVM to ViewModel in name
1 parent b491db7 commit 2abdfd1

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

SimpleMVVM.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.14.36203.30
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleMVVM", "SimpleMVVM\SimpleMVVM.csproj", "{BA71A860-3099-4D56-AF32-28E84C602E74}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleViewModel", "SimpleMVVM\SimpleViewModel.csproj", "{BA71A860-3099-4D56-AF32-28E84C602E74}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewModelGenerator", "ViewModelGenerator\ViewModelGenerator.csproj", "{529954DF-428A-4403-8D15-3B0B266223D6}"
99
EndProject

SimpleMVVM/BaseClasses/BaseCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Windows.Input;
22

3-
namespace SimpleMVVM.BaseClasses;
3+
namespace SimpleViewModel.BaseClasses;
44

55
/// <summary>
66
/// Provides a base implementation of the <see cref="ICommand"/> interface for WPF MVVM scenarios.

SimpleMVVM/BaseClasses/BaseViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Runtime.CompilerServices;
33
using System.Windows;
44

5-
namespace SimpleMVVM.BaseClasses;
5+
namespace SimpleViewModel.BaseClasses;
66

77
/// <summary>
88
/// Provides a base implementation of <see cref="INotifyPropertyChanged"/> for view models in a WPF MVVM application.

SimpleMVVM/BindAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SimpleMVVM;
1+
namespace SimpleViewModel;
22

33
[AttributeUsage(AttributeTargets.Property)]
44
public sealed class BindAttribute : Attribute;

SimpleMVVM/CommandAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SimpleMVVM;
1+
namespace SimpleViewModel;
22

33
[AttributeUsage(AttributeTargets.Method)]
44
public sealed class CommandAttribute : Attribute;

SimpleMVVM/ViewModelAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SimpleMVVM;
1+
namespace SimpleViewModel;
22

33
[AttributeUsage(AttributeTargets.Class)]
44
public sealed class ViewModelAttribute : Attribute;

0 commit comments

Comments
 (0)