1. 01 2月, 2018 1 次提交
  2. 31 1月, 2018 1 次提交
  3. 30 1月, 2018 2 次提交
  4. 28 1月, 2018 1 次提交
  5. 27 1月, 2018 1 次提交
  6. 26 1月, 2018 1 次提交
    • A
      Add references to System.IO.Pipes.AccessControl (#24457) · 5e3eec9a
      Andy Gocke 提交于
      When adding the reference to System.IO.Pipes.AccessControl for the
      compiler server to use on CoreCLR, I unified the pathway for the desktop
      and CoreCLR server access control code. This means that
      System.IO.Pipes.AccessControl needed to be added as a dependent DLL for
      desktop too, but I forgot to do that. This change adds
      System.IO.Pipes.AccessControl as a dependent DLL in all the places where
      the build task is deployed.
      5e3eec9a
  7. 25 1月, 2018 6 次提交
  8. 24 1月, 2018 11 次提交
  9. 23 1月, 2018 4 次提交
  10. 21 1月, 2018 1 次提交
  11. 20 1月, 2018 6 次提交
  12. 19 1月, 2018 5 次提交
    • V
      PR feedback · 1329f3ed
      vsadov 提交于
      1329f3ed
    • C
      Merge pull request #24279 from JieCarolHu/bug23513 · 5a9c469c
      Carol Hu 提交于
      Add a link to Tools>Options>…>Code Style to link to EditorConfig documentation. Bug#23513
      5a9c469c
    • J
      use PascalCase for const name · 3cf6aa66
      JieCarolHu 提交于
      3cf6aa66
    • A
      Limit compiler server pipe name length (#24265) · 927700bb
      Andy Gocke 提交于
      On MacOS pipes are implemented using Unix domain sockets. Unix domain
      sockets must have a valid file path for their endpoint. The best place
      is in the temp folder. Unfortunately, domain sockets on Unix also have a
      very small path length limit of 104 characters. In addition, Mac temp
      paths can be very long since they include randomly generated characters
      from the OS. In total, this means that Roslyn has barely 50 characters
      worth of space for its pipe identifiers.
      
      This change cuts down on the bytes of the SHA256 hash used. This shouldn't
      affect the security of the pipe, since the hash isn't used as a security boundary,
      but should fit the pipe name into the length limitations.
      
      Fixes #24137
      927700bb
    • J
      ea8aaba1