1. 10 3月, 2017 1 次提交
  2. 09 3月, 2017 3 次提交
  3. 28 1月, 2017 1 次提交
  4. 21 1月, 2017 1 次提交
  5. 06 1月, 2017 1 次提交
  6. 04 1月, 2017 1 次提交
    • A
      Improve diagnostics experience for public signing. · a646d13b
      AlekseyTs 提交于
      - VB: Report a warning about AssemblyKeyFile and AssemblyKeyName attributes being ignored by public signing.
      - Disallow public signing for Net modules. The fact that the signing is public is not preserved in a module. The fact of signing is preserved by emitting attributes that are going to be ignored anyway if public signing is used.
      
      Closes #11427.
      a646d13b
  7. 14 12月, 2016 1 次提交
  8. 23 11月, 2016 1 次提交
  9. 11 11月, 2016 1 次提交
  10. 15 10月, 2016 2 次提交
  11. 29 9月, 2016 1 次提交
  12. 28 9月, 2016 1 次提交
  13. 22 9月, 2016 1 次提交
  14. 21 9月, 2016 1 次提交
  15. 15 9月, 2016 1 次提交
  16. 03 9月, 2016 1 次提交
  17. 27 8月, 2016 1 次提交
    • V
      Implemented case insensitivity for VB tuples. · 4626d554
      VSadov 提交于
      * tuples with names differing only by case are not allowed
      * names that match predefined element names except for case do not result in additional names
      * name-related errors are checked in case-insensitive fasion
      4626d554
  18. 25 8月, 2016 1 次提交
  19. 17 8月, 2016 1 次提交
  20. 16 8月, 2016 1 次提交
  21. 11 8月, 2016 1 次提交
  22. 10 8月, 2016 1 次提交
  23. 05 8月, 2016 1 次提交
  24. 19 7月, 2016 2 次提交
  25. 15 7月, 2016 1 次提交
  26. 18 5月, 2016 1 次提交
  27. 17 5月, 2016 1 次提交
  28. 28 4月, 2016 1 次提交
  29. 05 3月, 2016 1 次提交
  30. 02 2月, 2016 1 次提交
  31. 06 1月, 2016 1 次提交
  32. 16 12月, 2015 1 次提交
    • A
      PR changes · 35ab0f51
      Artur Spychaj 提交于
      Improves comments around the IsCompleteSubmission.
      Throws argument exception when the syntax is not a submission.
      Uses the Parser.CheckFeatureAvailability to check multiline strings.
      Renames the IsScriptOrInteractive to IsScript.
      Handle incomplete members such as an annotation.
      Do not show completions when inside of a directive.
      Add tests for symbol completion provider.
      35ab0f51
  33. 05 12月, 2015 2 次提交
  34. 16 11月, 2015 1 次提交
  35. 14 11月, 2015 1 次提交
    • A
      Add support for public sign to csc · ca61bad2
      Andy Gocke 提交于
      Sometimes called "fake sign" or "OSS sign" public signing is including
      the public key in an output assembly and setting the "signed" flag, but
      not actually signing the assembly with a private key. This is useful for
      open source projects where people want to build assemblies which are
      compatible with the released "fully signed" assemblies, but don't have
      access to the private key used to sign the assemblies. Since almost no
      consumers actually need to check if the assembly is fully signed, these
      publicly built assemblies are useable in almost every scenario that the
      fully signed one would be used in.
      
      This PR implements support only for C# -- VB will be added soon. If
      being used at the command line, the /publicsign flag can be passed to
      csc and the /keyfile flag can specify the public key. Unlike fully
      signing, a full key pair encoded in the SNK file format is not currently
      supported. When using /publicsign, just the public key must be in the
      /keyfile file.
      
      When using the API, the public key can be passed directly using the
      CryptoPublicKey CompilationOption.
      ca61bad2