1. 14 12月, 2018 1 次提交
  2. 11 12月, 2018 1 次提交
  3. 10 12月, 2018 2 次提交
  4. 06 12月, 2018 1 次提交
  5. 04 12月, 2018 1 次提交
  6. 30 11月, 2018 1 次提交
  7. 27 11月, 2018 1 次提交
  8. 22 11月, 2018 1 次提交
  9. 20 11月, 2018 1 次提交
    • G
      Make default namespace available for VB in workspace and implement SetProperty for CPS project. · fa654f09
      Gen Lu 提交于
      Right now VB doesn't have the concept of "default namespace". But we conjure one in workspace by assigning the value of the project's root namespace to it. So various feature can choose to use it for their own purpose. In the future, we might consider officially exposing "default namespace" for VB project (e.g. through a <defaultnamespace> msbuild property)
      fa654f09
  10. 13 11月, 2018 1 次提交
  11. 09 11月, 2018 2 次提交
  12. 07 11月, 2018 1 次提交
  13. 02 11月, 2018 3 次提交
  14. 01 11月, 2018 1 次提交
  15. 31 10月, 2018 1 次提交
  16. 25 10月, 2018 1 次提交
  17. 23 10月, 2018 1 次提交
  18. 17 10月, 2018 1 次提交
  19. 12 10月, 2018 1 次提交
  20. 11 10月, 2018 1 次提交
  21. 06 10月, 2018 7 次提交
  22. 22 9月, 2018 1 次提交
  23. 20 9月, 2018 1 次提交
    • M
      Add support to save current tools options into an .editorconfig file · 588f1798
      Manish Vasani 提交于
      This ports https://github.com/dotnet/roslyn/pull/28472, that went into the `editorconfig-ide` feature branch, into `dev16.0.x` branch with following additional refactorings/enhancements:
      
      1. Generated .editorconfig file has all localized string as comments.
      2. No hardcoding of individual options in the editorconfig file generator. Instead, each `EditorConfigStorageLocation` now requires to provide a delegate to convert a given option value into the .editorconfig string representation (basically complimentary of the parsing delegate that was already required).
      3. Introduce concept of `OptionGroup` to enable grouping options in the same feature (such as CodeStyleOptions, CSharpCodeStyleOptions, FormattingOptions, CSharpFormattingOptions, etc.) into sub-features or groups (such as "this. preferences", "expression-level preferences", etc.). This enables the editorconfig generation to group the related options, without explicit knowledge of each option group.
      4. Expose `AllOptions` from each option feature (such as CodeStyleOptions, CSharpCodeStyleOptions, FormattingOptions, CSharpFormattingOptions, etc.), so that the corresponding `IOptionProvider` always stays in sync with implemented options.
      588f1798
  24. 16 9月, 2018 1 次提交
  25. 13 9月, 2018 2 次提交
    • C
      cd069434
    • T
      Switch to Arcade targets for building VSIXes (#29590) · 515ff80d
      Tomáš Matoušek 提交于
      * Rename target GetBuildVersion to GetVsixVersion
      
      * Targets refactoring to align with Arcade SDK
      
      * Remove unused property
      
      * Use Arcade VSIX build targets
      
      * Upload Willow VSIXes directly from VSSetup directory
      
      * Add setup packages to Roslyn.sln
      
      * Remove swr validation from BuildBoss
      
      * Avoid copying CoreXT packages
      
      * Don't delete DevDivPackages\Roslyn dir
      
      * Upload vsixes even when the build fails
      
      * Clean up VSIX project files
      
      * Install VSIXes in specified order
      
      * Do not set TargetFrameworkVersion.
      
      * Fix parameter
      
      * DevDivInsertion better error message
      
      * Remove 'win' from target string
      
      * Fix dir name
      
      * Install Setup.Dependencies
      
      * Default values for insertion components
      
      * Make BuildBoss happy
      
      * Fix VSIX path
      
      * NGEN binaries that should have been NGEN'd
      
      * RoboCopy returns non-zero exit code on success
      
      * Pass OfficialBuild property to vsmanproj
      515ff80d
  26. 29 8月, 2018 1 次提交
  27. 28 8月, 2018 3 次提交
    • M
      Address PR Feedback: · a6db5441
      Manish Vasani 提交于
      1. Break the analyzer into two separate diagnostics for flagging unused and unread members. Latter rule has no code fix.
      2. Remove all UI option elements for the added diagnostics and turn the rules off by default for now.
      3. Bail out for invalid operations and syntax errors.
      4. Handle doc comments and nameof - report unread member diagostics instead of unused member diagnostics if referenced in non-read/write context.
      a6db5441
    • T
      NuGet packaging (#29408) · 8a34dfb2
      Tomáš Matoušek 提交于
      * NuGet packaging
      
      * Add missing VS package references
      
      * Fix scripts
      
      * Add comment on Workspace.Desktop references with PrivateAssets
      
      * Fix Microsoft.NETCore.Compilers package
      
      * Fix up references
      
      * Build fixes
      
      * Correct OutputPath for package projects
      
      * Use NuGetRepack to force exact versions in per-build packages
      8a34dfb2
    • C
      Add package strings. · 87722e00
      Cyrus Najmabadi 提交于
      87722e00