1. 29 9月, 2015 4 次提交
  2. 26 9月, 2015 4 次提交
  3. 25 9月, 2015 3 次提交
  4. 24 9月, 2015 3 次提交
  5. 23 9月, 2015 1 次提交
    • R
      Speed up smart indenting in the presence of many inactive regions · 73c9498a
      Ravi Chande 提交于
      Avoid repeatedly calling ISyntaxFactsService.IsInInactiveRegion, which calls SyntaxTree.GetToken. GetToken needs to traverse directive trivia to find the token it is
      attached to. This results in n ^ 2 traversals of the tree if there are repeated directive before the line to indent. Additionally, when the indenter determines
      that it's examining a line inside a disabled region, instead of examining the previous line, it examines the first line preceeding the current line that isn't
      inside a disabled region.
      
      Fixes #5394.
      73c9498a
  6. 22 9月, 2015 1 次提交
    • T
      This cleans up the Roslyn Code Base. · deee04e4
      Tanner Gooding 提交于
      * This updates all references to nuget.exe to use the copy in the root.
      * This deletes all NuGet.config and NuGet.exe files that are not in the root.
      * This removes all references to NuGet.targets (which is obsolete and no longer exists)
      deee04e4
  7. 19 9月, 2015 8 次提交
  8. 18 9月, 2015 2 次提交
  9. 17 9月, 2015 2 次提交
  10. 16 9月, 2015 1 次提交
    • M
      Add a new suggested action "FixMultipleSuggestedAction" for IDE layer... · d164777b
      Manish Vasani 提交于
      Add a new suggested action "FixMultipleSuggestedAction" for IDE layer corresponding to FixMultipleCodeAction and FixMultipleContext. Also implement the FixMultipleOccurrencesService to compute and apply a FixMultipleSuggestedAction.
      
      Subsequent change will use this service to fix (suppress) diagnostics selected in the error list.
      d164777b
  11. 15 9月, 2015 5 次提交
  12. 12 9月, 2015 2 次提交
  13. 11 9月, 2015 3 次提交
    • H
    • M
      Initial work for "Disconnected baselining" scenario: · 08b9efdc
      Manish Vasani 提交于
      1. CompilationWithAnalyzers can now report analyzer diagnostics with source suppressions (pragma/SuppressMessageAttribute). This will eventually allow us to surface diagnostics with source suppressions in the error list. Note that the behavior of command line compilers and all the GetDiagnostics APIs is unchanged, only the compiler analyzer will report diagnostics with source suppressions.
      
      2. Add FixAll support for Suppression code fixes. Light bulb suppression fixes now show the "Fix all occurrences" options for Document/Project/Solution. This change adds the basic functionality to bulk suppress diagnostics. This will eventually be consumed for baselining all/selected diagnostics from error list/solution explorer.
      
      3. Simplify the Suppression light bulb menu to remove the option to add a local SuppressMessageAttribute. The only options now are to suppress in source (pragma) or suppressions file (assembly level SuppressMessageAttribute).
      08b9efdc
    • A
      Disable snippets in the Interactive window · c7c55e34
      Andrew Casey 提交于
      ...for v1.  Filed #5107 to revive them.
      
      (There are fewer VB tests since VB doesn't have SurroundWith and
      Interactive window completion is NYI.)
      
      Bonus: Improve consistency between ```ExecuteCommand``` and
      ```GetCommandState``` in snippet handler.
      c7c55e34
  14. 10 9月, 2015 1 次提交