Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Move the InitializeVsPackage method where it should be. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | VsInstallerWork |
Files: | files | file ages | folders |
SHA1: |
b34bcad2c0dfdc04787a43adb5789741 |
User & Date: | mistachkin 2012-01-03 04:53:27.004 |
Context
2012-01-03
| ||
07:57 | Enforce the image runtime version restrictions when installing and uninstalling the VS designer components. check-in: f737d62e72 user: mistachkin tags: VsInstallerWork | |
04:53 | Move the InitializeVsPackage method where it should be. check-in: b34bcad2c0 user: mistachkin tags: VsInstallerWork | |
04:48 | More refactoring, eliminate all static data pertaining to .NET Framework and/or Visual Studio versions, replacing them with the POD classes FrameworkList and VsList. check-in: 2398c28918 user: mistachkin tags: VsInstallerWork | |
Changes
Changes to tools/install/Installer.cs.
︙ | ︙ | |||
3428 3429 3430 3431 3432 3433 3434 | new Version(2, 0, 50727), new Version(4, 0, 30319) })); } } /////////////////////////////////////////////////////////////////////// | < < < < < < < < < < < < < < < < < < < < < < < < < < < | 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 | new Version(2, 0, 50727), new Version(4, 0, 30319) })); } } /////////////////////////////////////////////////////////////////////// private static bool HaveVsVersion( RegistryKey rootKey, Version vsVersion, bool whatIf, bool verbose ) { |
︙ | ︙ | |||
4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 | } } #endregion /////////////////////////////////////////////////////////////////////// #region Visual Studio Package Handling private static bool AddVsPackage( RegistryKey rootKey, Version vsVersion, Package package, string fileName, bool whatIf, bool verbose, | > > > > > > > > > > > > > > > > > > > > > > > > > > > | 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 | } } #endregion /////////////////////////////////////////////////////////////////////// #region Visual Studio Package Handling private static void InitializeVsPackage( ref Package package ) { if (package == null) { package = new Package(); package.AdoNetTechnologyId = new Guid( "77AB9A9D-78B9-4BA7-91AC-873F5338F1D2"); package.PackageId = new Guid( "DCBE6C8D-0E57-4099-A183-98FF74C64D9C"); package.ServiceId = new Guid( "DCBE6C8D-0E57-4099-A183-98FF74C64D9D"); package.DataSourceId = new Guid( "0EBAAB6E-CA80-4B4A-8DDF-CBE6BF058C71"); package.DataProviderId = new Guid( "0EBAAB6E-CA80-4B4A-8DDF-CBE6BF058C70"); } } /////////////////////////////////////////////////////////////////////// private static bool AddVsPackage( RegistryKey rootKey, Version vsVersion, Package package, string fileName, bool whatIf, bool verbose, |
︙ | ︙ |