Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Disable method inlining for the new design-time installer methods. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9d790b0b0d50a5b1422ee29a14ef35c1 |
User & Date: | mistachkin 2014-01-28 23:55:21.592 |
Context
2014-01-29
| ||
00:36 | Make sure that the 'real' entity model data type name ends up being mapped to System.Double. Fix for [d5ef4ca519]. check-in: 10e6d40e81 user: mistachkin tags: trunk | |
2014-01-28
| ||
23:55 | Disable method inlining for the new design-time installer methods. check-in: 9d790b0b0d user: mistachkin tags: trunk | |
22:32 | Add 'single' data type to the mappings returned by GetSchema. check-in: 0a225477e0 user: mistachkin tags: trunk | |
Changes
Changes to tools/install/Installer.cs.
︙ | ︙ | |||
6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 | debugCallback, traceCallback, String.Format( VsDevEnvSetupFormat, ForDisplay(process), ForDisplay(e)), traceCategory); } /////////////////////////////////////////////////////////////////////// private static bool AddVsDevEnvSetup( Version vsVersion, string directory, bool perUser, bool whatIf, bool verbose, ref string error | > | 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 | debugCallback, traceCallback, String.Format( VsDevEnvSetupFormat, ForDisplay(process), ForDisplay(e)), traceCategory); } /////////////////////////////////////////////////////////////////////// [MethodImpl(MethodImplOptions.NoInlining)] private static bool AddVsDevEnvSetup( Version vsVersion, string directory, bool perUser, bool whatIf, bool verbose, ref string error |
︙ | ︙ | |||
6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 | } return true; } /////////////////////////////////////////////////////////////////////// private static bool RemoveVsDevEnvSetup( Version vsVersion, string directory, bool perUser, bool whatIf, bool verbose, ref string error | > | 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 | } return true; } /////////////////////////////////////////////////////////////////////// [MethodImpl(MethodImplOptions.NoInlining)] private static bool RemoveVsDevEnvSetup( Version vsVersion, string directory, bool perUser, bool whatIf, bool verbose, ref string error |
︙ | ︙ |