1. 27 10月, 2015 12 次提交
  2. 25 10月, 2015 5 次提交
    • J
      Merge pull request #6302 from jaredpar/pw · 4469c0bb
      Jared Parsons 提交于
      Remove PumpingWait
      4469c0bb
    • J
      Fix closed build break · 220d8250
      Jared Parsons 提交于
      220d8250
    • J
      Responded to PR feedback · 9e9c6d6e
      Jared Parsons 提交于
      9e9c6d6e
    • J
      Remove PumpingWait · bdc047b6
      Jared Parsons 提交于
      This removes PumpingWait from our test infrastructure and replaces it with proper await calls on the Task(s) in question.
      bdc047b6
    • M
      Fix VSIX based analyzers installed in the extensions hive. · 571f91ed
      Manish Vasani 提交于
      Customer scenario: User installs any VSIX based analyzer into their extensions hive, but the analyzers and fixers from the installed extension don't work.
      
      Reason: While making the features layer portable, we changed the analyzer assembly loader for VSIX based analyzers to use the PEReader to get the assembly name for loading the assembly. Prior to that, we used to invoke the desktop API "AssemblyName.GetAssemblyName", which sets the CodeBase property of the returned assembly name to be full path of the assembly. Assembly.Load would attempt to load the ngen'ed image of the assembly, and if it doesn't exist then search will eventually fall back to loading the managed assembly at the CodeBase location. We lost the latter functionality when we made the above change, which causes the assembly loader to fail loading the assembly at the specified full path.
      
      Fix: Move the analyzer assembly loader to the non-portable VS diagnostic analyzer provider service. Any host which needs to support VSIX based analyzers must also implement the assembly loader for VSIX analyzers.
      
      Testing: Verified that assemblies from VSIX based analyzer extensions get loaded successfully and the diagnostics/code fixes work fine. Also added a unit test to verify that host analyzer manager can load assemblies from custom install paths - verified that test fails prior to this change.
      
      Fixes #6285
      571f91ed
  3. 24 10月, 2015 15 次提交
  4. 23 10月, 2015 8 次提交