1. 29 5月, 2015 11 次提交
  2. 28 5月, 2015 21 次提交
  3. 27 5月, 2015 8 次提交
    • A
      Make scanner resilient to binary files as input. · 09c53737
      AlekseyTs 提交于
      Fixes #2867.
      09c53737
    • J
      Jenkins cross platform updates · dffcfbbb
      jaredpar 提交于
      This changes our cross plat build to install the desired version of Mono
      on the machine as a part of the CI process.  This lowers the management
      overhead of our Mac / Linux machines as we can use any machine in the pool
      vs. having reserved, and custom maintained, machines for Roslyn.
      dffcfbbb
    • M
      User scenario: IDE built-in analyzer UnboundIdentifiersDiagnosticAnalyzer... · 89db5476
      Manish Vasani 提交于
      User scenario: IDE built-in analyzer UnboundIdentifiersDiagnosticAnalyzer throws a null reference exception and gets disabled with an exception diagnostic in the error list.
      
      Fix description: Add a missing null check when computing arguments for object creation expression.
      
      Fixes #3027
      
      Testing done: Existing tests
      89db5476
    • H
      changed error list to use SystemBrowser API from VS. · 940ce3cf
      Heejae Chang 提交于
      this will let us use Edge browser in windows 10
      940ce3cf
    • H
      Merge pull request #3045 from heejaechang/vsixfix2 · 83c9c9bd
      Heejae Chang 提交于
      changed sign method from vsix to vsixSHA2
      83c9c9bd
    • M
    • T
      Merge pull request #3047 from tmeschter/Fix3020 · 707645ff
      Tom Meschter 提交于
      Prevent spurious warnings about missing dependencies.
      
      **Bug:** Fixes #3020.
      
      **Customer Scenario**
      1. User adds any analyzer assembly that includes a code fix to their project (e.g.,  Microsoft.CodeAnalysis.FxCopAnalyzers.dll or Microsoft.CodeAnalysis.CSharp.FxCopAnalyzers.dll).
      2. Users saves their project and restarts VS.
      3. User reopens the same project.
      4. User gets spurious warnings about 'System.Composition.AttributedModel' not being found and analyzers possibly not working. Closing and reopening the project sometimes helps, but more often than not the warnings show up.
      
      **Fix Description**
      The fix updates the `AnalyzerDependencyChecker` to allow whitelisting arbitrary sets of assemblies, not just those already loaded. This is used to then whitelist all assemblies with a name starting with "System" on the assumption that even if they are not already loaded they will in fact be found if needed. If an analyzer reference appears on any whitelist we won't report it as missing, even if we don't know where it is.
      
      **Testing**
      I tested the customer scenario listed above, and also tested that missing assemblies that *don't* start with 'System' as still reported.
      707645ff
    • A
      Merge pull request #3037 from AlekseyTs/Issue2903 · 8ea2a5ed
      AlekseyTs 提交于
      Respect ParamArray attribute in source on a delegate parameter.
      8ea2a5ed