├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── LICENSE.md ├── README.md ├── SafeRootProjectWizard ├── ChildWizard.cs ├── Properties │ └── AssemblyInfo.cs ├── RootWizard.cs ├── SafeRootProjectWizard.csproj └── key.snk ├── SolutionTemplateGenerator.sln └── SolutionTemplateGenerator ├── App.xaml ├── App.xaml.cs ├── BusyIndicator ├── BusyIndicator.cs └── VisualStates.BusyIndicator.cs ├── Core ├── ManifestCreator │ ├── Project.cs │ ├── ProjectVSTemplateCreator.cs │ ├── SolutionFileParser.cs │ ├── SolutionVSTemplateCreator.cs │ └── VsixManifestCreator.cs ├── Preprocessor │ ├── ModifyCodeFile.cs │ ├── ModifyFactory.cs │ └── ModifyProjectFile.cs ├── ProjectSettings.cs ├── TemplateGeneratorFactory.cs ├── Utils │ ├── IoExt.cs │ ├── KnownProjectTypeGuid.cs │ ├── ResourceFile.cs │ └── Serializer.cs ├── XmlSchema │ ├── Folder.cs │ ├── ItemsChoiceType.cs │ ├── NameDescriptionIcon.cs │ ├── ProjectItem.cs │ ├── ProjectTemplateLink.cs │ ├── SolutionFolder.cs │ ├── VSTemplate.cs │ ├── VSTemplateTemplateContent.cs │ ├── VSTemplateTemplateContentCustomParameter.cs │ ├── VSTemplateTemplateContentProject.cs │ ├── VSTemplateTemplateContentProjectCollection.cs │ ├── VSTemplateTemplateContentProjectItem.cs │ ├── VSTemplateTemplateContentReferences.cs │ ├── VSTemplateTemplateContentReferencesReference.cs │ ├── VSTemplateTemplateData.cs │ ├── VSTemplateTemplateDataLocationField.cs │ ├── VSTemplateTemplateDataRequiredFrameworkVersion.cs │ ├── VSTemplateWizardData.cs │ ├── VSTemplateWizardExtension.cs │ ├── Vsix.cs │ ├── VsixAssembly.cs │ ├── VsixContent.cs │ ├── VsixCustomExtension.cs │ ├── VsixIdentifier.cs │ ├── VsixIdentifierIsolatedShell.cs │ ├── VsixIdentifierSupportedFrameworkRuntimeEdition.cs │ ├── VsixIdentifierVisualStudio.cs │ └── VsixReference.cs └── ZipSolution.cs ├── MVVM ├── DelegateCommand.cs ├── FolderBrowserDialogBehavior.cs ├── OpenFileDialogBoxBehavior.cs └── ViewModelBase.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models └── OptionsGui.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── MIT.txt ├── [Content_Types].xml ├── __Template_large.png ├── __Template_small.png ├── debug-run-icon.png └── stg.png ├── SolutionTemplateGenerator.csproj ├── Themes ├── ExpressionDark.xaml └── Generic.xaml ├── ViewModels └── MainWindowViewModel.cs ├── Views ├── Config.xaml └── Config.xaml.cs ├── ico.ico └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/README.md -------------------------------------------------------------------------------- /SafeRootProjectWizard/ChildWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SafeRootProjectWizard/ChildWizard.cs -------------------------------------------------------------------------------- /SafeRootProjectWizard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SafeRootProjectWizard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SafeRootProjectWizard/RootWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SafeRootProjectWizard/RootWizard.cs -------------------------------------------------------------------------------- /SafeRootProjectWizard/SafeRootProjectWizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SafeRootProjectWizard/SafeRootProjectWizard.csproj -------------------------------------------------------------------------------- /SafeRootProjectWizard/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SafeRootProjectWizard/key.snk -------------------------------------------------------------------------------- /SolutionTemplateGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator.sln -------------------------------------------------------------------------------- /SolutionTemplateGenerator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/App.xaml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/App.xaml.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/BusyIndicator/BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/BusyIndicator/BusyIndicator.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/BusyIndicator/VisualStates.BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/BusyIndicator/VisualStates.BusyIndicator.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ManifestCreator/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ManifestCreator/Project.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ManifestCreator/ProjectVSTemplateCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ManifestCreator/ProjectVSTemplateCreator.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ManifestCreator/SolutionFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ManifestCreator/SolutionFileParser.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ManifestCreator/SolutionVSTemplateCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ManifestCreator/SolutionVSTemplateCreator.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ManifestCreator/VsixManifestCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ManifestCreator/VsixManifestCreator.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Preprocessor/ModifyCodeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Preprocessor/ModifyCodeFile.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Preprocessor/ModifyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Preprocessor/ModifyFactory.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Preprocessor/ModifyProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Preprocessor/ModifyProjectFile.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ProjectSettings.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/TemplateGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/TemplateGeneratorFactory.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Utils/IoExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Utils/IoExt.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Utils/KnownProjectTypeGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Utils/KnownProjectTypeGuid.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Utils/ResourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Utils/ResourceFile.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/Utils/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/Utils/Serializer.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/Folder.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/ItemsChoiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/ItemsChoiceType.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/NameDescriptionIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/NameDescriptionIcon.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/ProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/ProjectItem.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/ProjectTemplateLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/ProjectTemplateLink.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/SolutionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/SolutionFolder.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplate.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContent.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentCustomParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentCustomParameter.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProject.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProjectCollection.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentProjectItem.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentReferences.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentReferencesReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateContentReferencesReference.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateData.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateDataLocationField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateDataLocationField.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateDataRequiredFrameworkVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateTemplateDataRequiredFrameworkVersion.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateWizardData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateWizardData.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VSTemplateWizardExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VSTemplateWizardExtension.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/Vsix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/Vsix.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixAssembly.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixContent.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixCustomExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixCustomExtension.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifier.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierIsolatedShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierIsolatedShell.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierSupportedFrameworkRuntimeEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierSupportedFrameworkRuntimeEdition.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierVisualStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixIdentifierVisualStudio.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/XmlSchema/VsixReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/XmlSchema/VsixReference.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Core/ZipSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Core/ZipSolution.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MVVM/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MVVM/DelegateCommand.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MVVM/FolderBrowserDialogBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MVVM/FolderBrowserDialogBehavior.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MVVM/OpenFileDialogBoxBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MVVM/OpenFileDialogBoxBehavior.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MVVM/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MVVM/ViewModelBase.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MainWindow.xaml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Models/OptionsGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Models/OptionsGui.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Properties/Resources.resx -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Properties/Settings.settings -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/MIT.txt -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/[Content_Types].xml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/__Template_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/__Template_large.png -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/__Template_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/__Template_small.png -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/debug-run-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/debug-run-icon.png -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Resources/stg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Resources/stg.png -------------------------------------------------------------------------------- /SolutionTemplateGenerator/SolutionTemplateGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/SolutionTemplateGenerator.csproj -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Themes/Generic.xaml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Views/Config.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Views/Config.xaml -------------------------------------------------------------------------------- /SolutionTemplateGenerator/Views/Config.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/Views/Config.xaml.cs -------------------------------------------------------------------------------- /SolutionTemplateGenerator/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/ico.ico -------------------------------------------------------------------------------- /SolutionTemplateGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/Solution-Template-Generator/HEAD/SolutionTemplateGenerator/packages.config --------------------------------------------------------------------------------