1. 28 4月, 2016 3 次提交
  2. 27 4月, 2016 1 次提交
  3. 25 4月, 2016 1 次提交
  4. 22 4月, 2016 1 次提交
  5. 21 4月, 2016 2 次提交
  6. 20 4月, 2016 2 次提交
  7. 14 4月, 2016 1 次提交
  8. 04 3月, 2016 2 次提交
  9. 03 3月, 2016 1 次提交
  10. 02 3月, 2016 1 次提交
  11. 01 3月, 2016 2 次提交
  12. 27 2月, 2016 2 次提交
    • A
      PR comments · bd3dfede
      Andy Gocke 提交于
      bd3dfede
    • A
      Always use an absolute path for keyfile with public sign · 67a9fd89
      Andy Gocke 提交于
      Right now there are two code paths for signing using a keyfile:
      
      1) Full & delay signing implemented using a strong-name provider, which
         calls into the CLR when necessary to do signing.
      2) Public signing, which extracts the key directly from the file and
         embeds it manually into the assembly using only portable code.
      
      The tricky part is that (1) also implements a bunch of legacy semantics
      on how to resolve the key file from various search paths, since the key
      file can also be specified via an attribute.
      
      This behavior is already deprecated, so rather than implement the
      complicated file resolution for public sign as well, this PR changes the
      command line compilers to always produce an absolute path for the key
      file before passing it to CompilationOptions. CreateCompilation now also
      has a check to enforce that CryptoKeyFile is an absolute path when
      PublicSign is set.
      
      Fixes #8360.
      67a9fd89
  13. 24 2月, 2016 1 次提交
  14. 20 2月, 2016 1 次提交
  15. 18 2月, 2016 3 次提交
  16. 12 2月, 2016 1 次提交
  17. 11 2月, 2016 1 次提交
  18. 10 2月, 2016 2 次提交
  19. 04 2月, 2016 1 次提交
  20. 01 2月, 2016 1 次提交
  21. 29 1月, 2016 1 次提交
  22. 21 1月, 2016 1 次提交
    • A
      Strengthen implementation of... · ced154d2
      AlekseyTs 提交于
      Strengthen implementation of MetadataHelpers.GetInfoForImmediateNamespaceMembers against unconventional/obfuscated namespace names in metadata.
      
      Fixes #7396.
      ced154d2
  23. 12 1月, 2016 1 次提交
  24. 09 1月, 2016 4 次提交
  25. 05 1月, 2016 1 次提交
  26. 29 12月, 2015 1 次提交
  27. 13 12月, 2015 1 次提交
    • A
      Fix publicsign in VB · dbe9e24a
      Andy Gocke 提交于
      VB didn't check if publicsign was set before reporting an error
      about the keyfile only containing a public key. This also checks
      if public sign is set before reporting said error.
      dbe9e24a