├── .gitignore ├── AddDbConnectionDialog.Designer.cs ├── AddDbConnectionDialog.cs ├── AddDbConnectionDialog.resx ├── App.config ├── AzureAppServiceMigrationAssistant.csproj ├── AzureAppServiceMigrationAssistant.sln ├── CompatCheckAndMigrate.application ├── CompatCheckAndMigrate └── 1.4.0.0 │ ├── CompatCheckAndMigrate.application │ └── CompatCheckAndMigrate.exe.manifest ├── Controls ├── AddRemoteServers.Designer.cs ├── AddRemoteServers.cs ├── AddRemoteServers.resx ├── ConfirmationControl.Designer.cs ├── ConfirmationControl.cs ├── ConfirmationControl.resx ├── ContentAndDbMigrationControl.Designer.cs ├── ContentAndDbMigrationControl.cs ├── ContentAndDbMigrationControl.resx ├── InstallerControl.Designer.cs ├── InstallerControl.cs ├── InstallerControl.resx ├── InstallerItemControl.Designer.cs ├── InstallerItemControl.cs ├── InstallerItemControl.resx ├── MigrationCandidatesControl.Designer.cs ├── MigrationCandidatesControl.cs ├── MigrationCandidatesControl.resx ├── MigrationSite.Designer.cs ├── MigrationSite.cs ├── MigrationSite.resx ├── PickPublishSettingsControl.Designer.cs ├── PickPublishSettingsControl.cs ├── PickPublishSettingsControl.resx ├── PublishStatus.Designer.cs ├── PublishStatus.cs ├── PublishStatus.resx ├── ReadinessReportControl.Designer.cs ├── ReadinessReportControl.cs ├── ReadinessReportControl.resx ├── RemoteServerControl.Designer.cs ├── RemoteServerControl.cs ├── RemoteServerControl.resx ├── SaveReadinessReportControl.Designer.cs ├── SaveReadinessReportControl.cs ├── SaveReadinessReportControl.resx ├── SendFeedbackControl.Designer.cs ├── SendFeedbackControl.cs ├── SendFeedbackControl.resx ├── SiteItemControl.Designer.cs ├── SiteItemControl.cs ├── SiteItemControl.resx ├── SiteStatusControl.Designer.cs ├── SiteStatusControl.cs └── SiteStatusControl.resx ├── Helpers ├── Application.cs ├── ApplicationPool.cs ├── Binding.cs ├── ConfigReader.cs ├── Database.cs ├── ElementCountMap.cs ├── GacAssemblyDetector.cs ├── HashSet.cs ├── Helper.cs ├── IISInfoReader.cs ├── IISServer.cs ├── IISServers.cs ├── Impersonator.cs ├── LoggedOnUser.cs ├── MWDWrapper.cs ├── MetabaseReader.cs ├── MigrationConstants.cs ├── PublishManager.cs ├── PublishSettings.cs ├── RemoteSystemInfo.cs ├── RemoteSystemInfos.cs ├── SafeLogonHandle.cs ├── Site.cs ├── TraceHelper.cs ├── VirtualDirectory.cs └── WebPlatformInstallHelper.cs ├── LICENSE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── ObjectModel ├── GoToWizardStepEventArgs.cs ├── IWizardStep.cs └── WizardSteps.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── PublishManager.cs ├── README.md ├── Resources ├── AnimatedProgressBar.gif ├── Busy.gif ├── Error.png ├── IIS_MergedSchema.xml ├── OK.png ├── Search.gif └── icon-drawer-processing-active.gif ├── clickonce.cmd ├── clickoncemigrate4.cmd └── workitems.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/.gitignore -------------------------------------------------------------------------------- /AddDbConnectionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/AddDbConnectionDialog.Designer.cs -------------------------------------------------------------------------------- /AddDbConnectionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/AddDbConnectionDialog.cs -------------------------------------------------------------------------------- /AddDbConnectionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/AddDbConnectionDialog.resx -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/App.config -------------------------------------------------------------------------------- /AzureAppServiceMigrationAssistant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/AzureAppServiceMigrationAssistant.csproj -------------------------------------------------------------------------------- /AzureAppServiceMigrationAssistant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/AzureAppServiceMigrationAssistant.sln -------------------------------------------------------------------------------- /CompatCheckAndMigrate.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/CompatCheckAndMigrate.application -------------------------------------------------------------------------------- /CompatCheckAndMigrate/1.4.0.0/CompatCheckAndMigrate.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/CompatCheckAndMigrate/1.4.0.0/CompatCheckAndMigrate.application -------------------------------------------------------------------------------- /CompatCheckAndMigrate/1.4.0.0/CompatCheckAndMigrate.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/CompatCheckAndMigrate/1.4.0.0/CompatCheckAndMigrate.exe.manifest -------------------------------------------------------------------------------- /Controls/AddRemoteServers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/AddRemoteServers.Designer.cs -------------------------------------------------------------------------------- /Controls/AddRemoteServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/AddRemoteServers.cs -------------------------------------------------------------------------------- /Controls/AddRemoteServers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/AddRemoteServers.resx -------------------------------------------------------------------------------- /Controls/ConfirmationControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ConfirmationControl.Designer.cs -------------------------------------------------------------------------------- /Controls/ConfirmationControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ConfirmationControl.cs -------------------------------------------------------------------------------- /Controls/ConfirmationControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ConfirmationControl.resx -------------------------------------------------------------------------------- /Controls/ContentAndDbMigrationControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ContentAndDbMigrationControl.Designer.cs -------------------------------------------------------------------------------- /Controls/ContentAndDbMigrationControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ContentAndDbMigrationControl.cs -------------------------------------------------------------------------------- /Controls/ContentAndDbMigrationControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ContentAndDbMigrationControl.resx -------------------------------------------------------------------------------- /Controls/InstallerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerControl.Designer.cs -------------------------------------------------------------------------------- /Controls/InstallerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerControl.cs -------------------------------------------------------------------------------- /Controls/InstallerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerControl.resx -------------------------------------------------------------------------------- /Controls/InstallerItemControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerItemControl.Designer.cs -------------------------------------------------------------------------------- /Controls/InstallerItemControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerItemControl.cs -------------------------------------------------------------------------------- /Controls/InstallerItemControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/InstallerItemControl.resx -------------------------------------------------------------------------------- /Controls/MigrationCandidatesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationCandidatesControl.Designer.cs -------------------------------------------------------------------------------- /Controls/MigrationCandidatesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationCandidatesControl.cs -------------------------------------------------------------------------------- /Controls/MigrationCandidatesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationCandidatesControl.resx -------------------------------------------------------------------------------- /Controls/MigrationSite.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationSite.Designer.cs -------------------------------------------------------------------------------- /Controls/MigrationSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationSite.cs -------------------------------------------------------------------------------- /Controls/MigrationSite.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/MigrationSite.resx -------------------------------------------------------------------------------- /Controls/PickPublishSettingsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PickPublishSettingsControl.Designer.cs -------------------------------------------------------------------------------- /Controls/PickPublishSettingsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PickPublishSettingsControl.cs -------------------------------------------------------------------------------- /Controls/PickPublishSettingsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PickPublishSettingsControl.resx -------------------------------------------------------------------------------- /Controls/PublishStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PublishStatus.Designer.cs -------------------------------------------------------------------------------- /Controls/PublishStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PublishStatus.cs -------------------------------------------------------------------------------- /Controls/PublishStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/PublishStatus.resx -------------------------------------------------------------------------------- /Controls/ReadinessReportControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ReadinessReportControl.Designer.cs -------------------------------------------------------------------------------- /Controls/ReadinessReportControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ReadinessReportControl.cs -------------------------------------------------------------------------------- /Controls/ReadinessReportControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/ReadinessReportControl.resx -------------------------------------------------------------------------------- /Controls/RemoteServerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/RemoteServerControl.Designer.cs -------------------------------------------------------------------------------- /Controls/RemoteServerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/RemoteServerControl.cs -------------------------------------------------------------------------------- /Controls/RemoteServerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/RemoteServerControl.resx -------------------------------------------------------------------------------- /Controls/SaveReadinessReportControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SaveReadinessReportControl.Designer.cs -------------------------------------------------------------------------------- /Controls/SaveReadinessReportControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SaveReadinessReportControl.cs -------------------------------------------------------------------------------- /Controls/SaveReadinessReportControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SaveReadinessReportControl.resx -------------------------------------------------------------------------------- /Controls/SendFeedbackControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SendFeedbackControl.Designer.cs -------------------------------------------------------------------------------- /Controls/SendFeedbackControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SendFeedbackControl.cs -------------------------------------------------------------------------------- /Controls/SendFeedbackControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SendFeedbackControl.resx -------------------------------------------------------------------------------- /Controls/SiteItemControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteItemControl.Designer.cs -------------------------------------------------------------------------------- /Controls/SiteItemControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteItemControl.cs -------------------------------------------------------------------------------- /Controls/SiteItemControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteItemControl.resx -------------------------------------------------------------------------------- /Controls/SiteStatusControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteStatusControl.Designer.cs -------------------------------------------------------------------------------- /Controls/SiteStatusControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteStatusControl.cs -------------------------------------------------------------------------------- /Controls/SiteStatusControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Controls/SiteStatusControl.resx -------------------------------------------------------------------------------- /Helpers/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Application.cs -------------------------------------------------------------------------------- /Helpers/ApplicationPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/ApplicationPool.cs -------------------------------------------------------------------------------- /Helpers/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Binding.cs -------------------------------------------------------------------------------- /Helpers/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/ConfigReader.cs -------------------------------------------------------------------------------- /Helpers/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Database.cs -------------------------------------------------------------------------------- /Helpers/ElementCountMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/ElementCountMap.cs -------------------------------------------------------------------------------- /Helpers/GacAssemblyDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/GacAssemblyDetector.cs -------------------------------------------------------------------------------- /Helpers/HashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/HashSet.cs -------------------------------------------------------------------------------- /Helpers/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Helper.cs -------------------------------------------------------------------------------- /Helpers/IISInfoReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/IISInfoReader.cs -------------------------------------------------------------------------------- /Helpers/IISServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/IISServer.cs -------------------------------------------------------------------------------- /Helpers/IISServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/IISServers.cs -------------------------------------------------------------------------------- /Helpers/Impersonator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Impersonator.cs -------------------------------------------------------------------------------- /Helpers/LoggedOnUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/LoggedOnUser.cs -------------------------------------------------------------------------------- /Helpers/MWDWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/MWDWrapper.cs -------------------------------------------------------------------------------- /Helpers/MetabaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/MetabaseReader.cs -------------------------------------------------------------------------------- /Helpers/MigrationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/MigrationConstants.cs -------------------------------------------------------------------------------- /Helpers/PublishManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/PublishManager.cs -------------------------------------------------------------------------------- /Helpers/PublishSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/PublishSettings.cs -------------------------------------------------------------------------------- /Helpers/RemoteSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/RemoteSystemInfo.cs -------------------------------------------------------------------------------- /Helpers/RemoteSystemInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/RemoteSystemInfos.cs -------------------------------------------------------------------------------- /Helpers/SafeLogonHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/SafeLogonHandle.cs -------------------------------------------------------------------------------- /Helpers/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/Site.cs -------------------------------------------------------------------------------- /Helpers/TraceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/TraceHelper.cs -------------------------------------------------------------------------------- /Helpers/VirtualDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/VirtualDirectory.cs -------------------------------------------------------------------------------- /Helpers/WebPlatformInstallHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Helpers/WebPlatformInstallHelper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/LICENSE -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/MainForm.resx -------------------------------------------------------------------------------- /ObjectModel/GoToWizardStepEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/ObjectModel/GoToWizardStepEventArgs.cs -------------------------------------------------------------------------------- /ObjectModel/IWizardStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/ObjectModel/IWizardStep.cs -------------------------------------------------------------------------------- /ObjectModel/WizardSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/ObjectModel/WizardSteps.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /PublishManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/PublishManager.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AnimatedProgressBar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/AnimatedProgressBar.gif -------------------------------------------------------------------------------- /Resources/Busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/Busy.gif -------------------------------------------------------------------------------- /Resources/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/Error.png -------------------------------------------------------------------------------- /Resources/IIS_MergedSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/IIS_MergedSchema.xml -------------------------------------------------------------------------------- /Resources/OK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/OK.png -------------------------------------------------------------------------------- /Resources/Search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/Search.gif -------------------------------------------------------------------------------- /Resources/icon-drawer-processing-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/Resources/icon-drawer-processing-active.gif -------------------------------------------------------------------------------- /clickonce.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/clickonce.cmd -------------------------------------------------------------------------------- /clickoncemigrate4.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/clickoncemigrate4.cmd -------------------------------------------------------------------------------- /workitems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/Azure-Websites-Migration-Tool/HEAD/workitems.txt --------------------------------------------------------------------------------