├── .gitattributes ├── .gitignore ├── Demo.4 ├── App.xaml ├── App.xaml.cs ├── Demo.4.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Demo ├── App.config ├── App.xaml ├── App.xaml.cs ├── Demo.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── Commit.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── ViewModels │ └── MainViewModel.cs ├── HeaderPersister.sln ├── HeaderPersister └── HeaderPersister.nuproj ├── LICENSE ├── Library.4 ├── Helpers │ └── ItemContainerGeneratorExtensions.cs ├── Library.4.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Library ├── HeaderAdorner.cs ├── HeaderPersister.cs ├── Helpers │ └── VisualTreeHelpers.cs ├── Library.csproj └── Properties │ └── AssemblyInfo.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.4/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/App.xaml -------------------------------------------------------------------------------- /Demo.4/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/App.xaml.cs -------------------------------------------------------------------------------- /Demo.4/Demo.4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Demo.4.csproj -------------------------------------------------------------------------------- /Demo.4/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/MainWindow.xaml -------------------------------------------------------------------------------- /Demo.4/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Demo.4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo.4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo.4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo.4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo.4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo.4/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/App.config -------------------------------------------------------------------------------- /Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/App.xaml -------------------------------------------------------------------------------- /Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/App.xaml.cs -------------------------------------------------------------------------------- /Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Demo.csproj -------------------------------------------------------------------------------- /Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/MainWindow.xaml -------------------------------------------------------------------------------- /Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Demo/Model/Commit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Model/Commit.cs -------------------------------------------------------------------------------- /Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /Demo/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Demo/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /HeaderPersister.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/HeaderPersister.sln -------------------------------------------------------------------------------- /HeaderPersister/HeaderPersister.nuproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/HeaderPersister/HeaderPersister.nuproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/LICENSE -------------------------------------------------------------------------------- /Library.4/Helpers/ItemContainerGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Helpers/ItemContainerGeneratorExtensions.cs -------------------------------------------------------------------------------- /Library.4/Library.4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Library.4.csproj -------------------------------------------------------------------------------- /Library.4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Library.4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Library.4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Properties/Resources.resx -------------------------------------------------------------------------------- /Library.4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Library.4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library.4/Properties/Settings.settings -------------------------------------------------------------------------------- /Library/HeaderAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library/HeaderAdorner.cs -------------------------------------------------------------------------------- /Library/HeaderPersister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library/HeaderPersister.cs -------------------------------------------------------------------------------- /Library/Helpers/VisualTreeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library/Helpers/VisualTreeHelpers.cs -------------------------------------------------------------------------------- /Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library/Library.csproj -------------------------------------------------------------------------------- /Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelkarim/HeaderPersister/HEAD/README.md --------------------------------------------------------------------------------