1. 01 8月, 2018 1 次提交
  2. 31 7月, 2018 13 次提交
  3. 30 7月, 2018 3 次提交
  4. 28 7月, 2018 6 次提交
  5. 27 7月, 2018 14 次提交
  6. 26 7月, 2018 3 次提交
    • J
      Disable icacls use on Helix · c8097b89
      Jared Parsons 提交于
      The icacls command is failing on Helix hence disabling these tests there
      for now
      
      Related to #28836
      c8097b89
    • A
      Merge pull request #28623 from amcasey/FilePath · a9c960da
      Andrew Casey 提交于
      Use FilePath in VisualStudioWorkspaceImpl.AddDocumentToProjectItems
      a9c960da
    • J
      Fix Rename when there is non-SupportsCompilation projects · 2751aa77
      Jason Malinowski 提交于
      If we are doing a rename from a C#/VB symbol, and an F# project depends
      on that project, we might end up walking into non-C#/VB projects and
      we will crash. This prevents the crash.
      
      There were two ways I could fix this bug: one would be to update
      GetDocumentsAffectedByRename to exclude them up front. The other option
      is to deal with those at the call sites when we fail to find a service.
      I'm electing to do the later as that allows light-up by the appropriate
      language services if they wanted to do that down the road.
      2751aa77