├── .gitattributes ├── .gitignore ├── License.txt ├── README.md ├── WPF-Auto-Update.sln └── WPF_Auto_Updater ├── DownloadProgressControl.xaml ├── DownloadProgressControl.xaml.cs ├── Properties └── AssemblyInfo.cs ├── Updater.cs ├── WPF-Auto-Update.csproj └── WPF-Auto-Update.nuspec /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/README.md -------------------------------------------------------------------------------- /WPF-Auto-Update.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF-Auto-Update.sln -------------------------------------------------------------------------------- /WPF_Auto_Updater/DownloadProgressControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/DownloadProgressControl.xaml -------------------------------------------------------------------------------- /WPF_Auto_Updater/DownloadProgressControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/DownloadProgressControl.xaml.cs -------------------------------------------------------------------------------- /WPF_Auto_Updater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF_Auto_Updater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/Updater.cs -------------------------------------------------------------------------------- /WPF_Auto_Updater/WPF-Auto-Update.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/WPF-Auto-Update.csproj -------------------------------------------------------------------------------- /WPF_Auto_Updater/WPF-Auto-Update.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbound/WPF-Auto-Update/HEAD/WPF_Auto_Updater/WPF-Auto-Update.nuspec --------------------------------------------------------------------------------