├── .gitattributes ├── .gitignore ├── DevExpress.Mvvm.CodeGenerators.Tests ├── FrameworkTests │ ├── DataErrorInfoTests.cs │ ├── FrameworkTests.csproj │ ├── MemberNotNullTest.cs │ └── app.config ├── NetCoreTests │ ├── DataErrorInfoTests.cs │ ├── MemberNotNullTest.cs │ └── NetCoreTests.csproj ├── SharedTests │ ├── DxTest │ │ ├── AsyncCommandGenerationTests.cs │ │ ├── AttributeTransferTests.cs │ │ ├── CommandGenerationTests.cs │ │ ├── Helper.cs │ │ ├── InterfacesTests.cs │ │ ├── NullableAnnotationTests.cs │ │ ├── PropertyGenerationTests.cs │ │ ├── SupportServicesTests.cs │ │ └── UsingRaiseMethodTests.cs │ ├── MvvmLightTest │ │ ├── AsyncCommandGenerationTests.cs │ │ ├── AttributeTransferTests.cs │ │ ├── CommandGenerationTests.cs │ │ ├── Helper.cs │ │ ├── InterfacesTests.cs │ │ ├── NullableAnnotationTests.cs │ │ ├── PropertyGenerationTests.cs │ │ └── UsingRaiseMethodTests.cs │ ├── PrismTest │ │ ├── AsyncCommandGenerationTests.cs │ │ ├── AttributeTransferTests.cs │ │ ├── CommandGenerationTests.cs │ │ ├── Helper.cs │ │ ├── InterfacesTests.cs │ │ ├── NullableAnnotationTests.cs │ │ ├── PropertyGenerationTests.cs │ │ └── UsingRaiseMethodTests.cs │ ├── SharedTests.projitems │ └── SharedTests.shproj ├── UnitTests.WinUI │ ├── Tests.cs │ └── UnitTests.WinUI.csproj ├── UnitTests │ ├── DiagnosticTests │ │ ├── DiagnosticTestMvvmLight.cs │ │ ├── DiagnosticTestsDx.cs │ │ └── DiagnosticTestsPrism.cs │ ├── GenearationTests │ │ ├── CommonGenerationTests.cs │ │ ├── GenerationTestsDx.cs │ │ ├── GenerationTestsMvvmLight.cs │ │ └── GenerationTestsPrism.cs │ ├── SourceBuilderTests.cs │ └── UnitTests.csproj ├── WinUITest │ └── WinUITests.csproj └── WithoutMvvm │ ├── Helper.cs │ ├── PropertyGenerationTests.cs │ └── WithoutMvvm.csproj ├── DevExpress.Mvvm.CodeGenerators.sln ├── DevExpress.Mvvm.CodeGenerators ├── AnalyzerReleasesTracking │ ├── AnalyzerReleases.Shipped.md │ └── AnalyzerReleases.Unshipped.md ├── DevExpress.Mvvm.CodeGenerators.csproj ├── DevExpress.Mvvm.CodeGenerators.sln ├── Diagnostics │ ├── ConstExpressions.cs │ └── GeneratorDiagnostics.cs ├── ExtensionMethods.cs ├── Generators │ ├── ClassGenerator.cs │ ├── CommandGenerator.cs │ ├── EventArgsGenerator.cs │ ├── GeneratorCore.cs │ ├── InterfaceGenerator.cs │ └── PropertyGenerator.cs ├── Helpers │ ├── AttributeHelper.cs │ ├── ClassHelper.cs │ ├── CommandHelper.cs │ ├── PropertyHelper.cs │ ├── SourceBuilder.cs │ └── XMLCommentHelper.cs ├── Info │ ├── ContextInfo.cs │ └── INPCInfo.cs ├── InitializationGenerator │ ├── AccessModifierGenerator.cs │ ├── AttributesGenerator.cs │ └── InitializationGenerator.cs ├── SourceGenerator.cs └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── LICENSE └── Readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/.gitignore -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/DataErrorInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/DataErrorInfoTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/FrameworkTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/FrameworkTests.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/MemberNotNullTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/MemberNotNullTest.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/FrameworkTests/app.config -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/DataErrorInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/DataErrorInfoTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/MemberNotNullTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/MemberNotNullTest.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/NetCoreTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/NetCoreTests/NetCoreTests.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/AsyncCommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/AsyncCommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/AttributeTransferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/AttributeTransferTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/CommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/CommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/Helper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/InterfacesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/InterfacesTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/NullableAnnotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/NullableAnnotationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/PropertyGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/PropertyGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/SupportServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/SupportServicesTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/UsingRaiseMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/DxTest/UsingRaiseMethodTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/AsyncCommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/AsyncCommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/AttributeTransferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/AttributeTransferTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/CommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/CommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/Helper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/InterfacesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/InterfacesTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/NullableAnnotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/NullableAnnotationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/PropertyGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/PropertyGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/UsingRaiseMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/MvvmLightTest/UsingRaiseMethodTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/AsyncCommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/AsyncCommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/AttributeTransferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/AttributeTransferTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/CommandGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/CommandGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/Helper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/InterfacesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/InterfacesTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/NullableAnnotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/NullableAnnotationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/PropertyGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/PropertyGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/UsingRaiseMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/PrismTest/UsingRaiseMethodTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/SharedTests.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/SharedTests.projitems -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/SharedTests.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/SharedTests/SharedTests.shproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests.WinUI/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests.WinUI/Tests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests.WinUI/UnitTests.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests.WinUI/UnitTests.WinUI.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestMvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestMvvmLight.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestsDx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestsDx.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestsPrism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/DiagnosticTests/DiagnosticTestsPrism.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/CommonGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/CommonGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsDx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsDx.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsMvvmLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsMvvmLight.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsPrism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/GenearationTests/GenerationTestsPrism.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/SourceBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/SourceBuilderTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/WinUITest/WinUITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/WinUITest/WinUITests.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/Helper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/PropertyGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/PropertyGenerationTests.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/WithoutMvvm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.Tests/WithoutMvvm/WithoutMvvm.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators.sln -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/AnalyzerReleasesTracking/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/AnalyzerReleasesTracking/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/AnalyzerReleasesTracking/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/AnalyzerReleasesTracking/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/DevExpress.Mvvm.CodeGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/DevExpress.Mvvm.CodeGenerators.csproj -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/DevExpress.Mvvm.CodeGenerators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/DevExpress.Mvvm.CodeGenerators.sln -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Diagnostics/ConstExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Diagnostics/ConstExpressions.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Diagnostics/GeneratorDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Diagnostics/GeneratorDiagnostics.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/ExtensionMethods.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/ClassGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/ClassGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/CommandGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/CommandGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/EventArgsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/EventArgsGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/GeneratorCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/GeneratorCore.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/InterfaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/InterfaceGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Generators/PropertyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Generators/PropertyGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/AttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/AttributeHelper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/ClassHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/ClassHelper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/CommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/CommandHelper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/PropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/PropertyHelper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/SourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/SourceBuilder.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Helpers/XMLCommentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Helpers/XMLCommentHelper.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Info/ContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Info/ContextInfo.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/Info/INPCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/Info/INPCInfo.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/InitializationGenerator/AccessModifierGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/InitializationGenerator/AccessModifierGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/InitializationGenerator/AttributesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/InitializationGenerator/AttributesGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/InitializationGenerator/InitializationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/InitializationGenerator/InitializationGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/SourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/SourceGenerator.cs -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/tools/install.ps1 -------------------------------------------------------------------------------- /DevExpress.Mvvm.CodeGenerators/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/DevExpress.Mvvm.CodeGenerators/tools/uninstall.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress/DevExpress.Mvvm.CodeGenerators/HEAD/Readme.md --------------------------------------------------------------------------------