1. 13 7月, 2018 1 次提交
  2. 19 3月, 2018 1 次提交
  3. 11 4月, 2017 1 次提交
  4. 08 4月, 2017 1 次提交
  5. 04 8月, 2016 1 次提交
  6. 23 2月, 2016 1 次提交
  7. 12 1月, 2016 1 次提交
  8. 17 12月, 2015 1 次提交
    • J
      Switch tests unnecessarily using WpfFact to Fact · a226d9d2
      Jason Malinowski 提交于
      These tests were all using WpfFact, but not actually doing anything
      that required either WPF or an STA thread. We plan to enable
      parallelization of Facts (but not WpfFacts), and this ensures we can
      parallelize as many tests as possible.
      a226d9d2
  9. 04 11月, 2015 1 次提交
  10. 25 10月, 2015 1 次提交
    • 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
  11. 16 10月, 2015 1 次提交
  12. 10 10月, 2015 1 次提交
  13. 16 4月, 2015 1 次提交