Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add target framework 'netcoreapp3.0' or replace target framework 'netcoreapp2.1' with 'netcoreapp3.0' when adding is not possible #37823

Closed
wants to merge 110 commits into from

Commits on Aug 8, 2019

  1. Add target framework 'netcoreapp3.0' or replace target framework 'net…

    …coreapp2.1' with 'netcoreapp3.0' when adding is not possible.
    joperator committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    c3114ea View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2019

  1. Configuration menu
    Copy the full SHA
    94f0c80 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    296c43f View commit details
    Browse the repository at this point in the history
  3. Hook up maxlangver for CPS

    ryzngard authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    4ae908e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    65d9410 View commit details
    Browse the repository at this point in the history
  5. Introduce IDisposable to ArrayBuilder.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    32129fa View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37d6d43 View commit details
    Browse the repository at this point in the history
  7. Cleanup.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d2dac76 View commit details
    Browse the repository at this point in the history
  8. Add test

    ryzngard authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    7551aa2 View commit details
    Browse the repository at this point in the history
  9. Update based on PR feedback

    JoeRobich authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    bb610ab View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9ac9732 View commit details
    Browse the repository at this point in the history
  11. Explicitly call BindExpression in GetSpeculativeSymbolInfo, instead o…

    …f Bind, to be sure that we don't return type expression info instead of actual expression info.
    333fred authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    9e96a64 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f18d2bb View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    306282a View commit details
    Browse the repository at this point in the history
  14. Streamlined PooledDisposer.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    67dc458 View commit details
    Browse the repository at this point in the history
  15. completion test

    ivanbasov authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b75c4e9 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6708703 View commit details
    Browse the repository at this point in the history
  17. Fix typo.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    827cacb View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    495cf24 View commit details
    Browse the repository at this point in the history
  19. PR feedback

    ryzngard authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a200fcd View commit details
    Browse the repository at this point in the history
  20. Remove module scope from NullableContextAttribute

    Following #37610
    roji authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    618e239 View commit details
    Browse the repository at this point in the history
  21. Publish Ngen logs separately

    The NGEN log files are published inside our "Build Diagnostic Logs"
    container today. That is regularly around 160MB in size of which the
    NGEN logs take up ~700K.
    
    Been working on some automation / processing that is specific to NGEN
    log files. Downloading the other 159MB is fairly wasteful and slow for
    this automation. Publishing the NGEN files separately so I can make this
    automation more effecient.
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    ac47ec0 View commit details
    Browse the repository at this point in the history
  22. Fix our MSB3270 warnings

    There are a few parts to this change:
    
    1. Ensure that MSB3270 and MSB3277 warnings are promoted to errors in CI
    and hence block merging.
    1. Move our DiaSymReader.Native logic into a separate targets file.
    This resource cannot be consumed with a simple package reference but
    rather requires a package reference and custom logic to pull out the
    contained binaries. This logic used to be spread through our build. Now
    it's in a single place.
    1. Remove the x86 bootstrapping logic. This was testing a pretty obscure
    scenario and the cost of maintaining that logic is siginificant at this
    point. Can bring back if we ever find a bug in this area.
    
    The root cause of the MSB3270 warnings is a subtle change in the SDK. It
    now passes the runtime graph to NuGet for native assets. In the case of
    DiaSymReader.Native there are runtime specific assets hence the SDK /
    NuGet had to pick one for framework projects. This eventually lead to
    `PlatformTarget` being set to x86 where it shoud have been AnyCPU.
    
    Part of the change includes adding `ExcludeAssets=all` to the package
    reference which means they no longer figure into this logic and hence
    the binaries are marked as AnyCPU.
    
    This regression in behavior is being tracked by
    dotnet/sdk#3495
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    54da3f2 View commit details
    Browse the repository at this point in the history
  23. Respond to PR feedback

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    74ae8ab View commit details
    Browse the repository at this point in the history
  24. Fix a double include of a binary

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    fcbf72c View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    dfa15dd View commit details
    Browse the repository at this point in the history
  26. Deduplicate test info.

    333fred authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    72553fe View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    7ca28aa View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    36c0468 View commit details
    Browse the repository at this point in the history
  29. Switch from *.groovy to *.yml

    We don't have any groovy scripts anymore.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    9328e74 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    ac783d1 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    d5b7241 View commit details
    Browse the repository at this point in the history
  32. Fix property reference

    ryzngard authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    6d40a0e View commit details
    Browse the repository at this point in the history
  33. Update src/EditorFeatures/Core/Implementation/IntelliSense/AsyncCompl…

    …etion/ItemManager.cs
    
    Co-Authored-By: Marius Ungureanu <teromario@yahoo.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    812fdd5 View commit details
    Browse the repository at this point in the history
  34. Update src/EditorFeatures/Core/Implementation/IntelliSense/AsyncCompl…

    …etion/FilterResult.cs
    
    Co-Authored-By: Marius Ungureanu <teromario@yahoo.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b597241 View commit details
    Browse the repository at this point in the history
  35. code review feedback

    ivanbasov authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    2263eba View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    d555df7 View commit details
    Browse the repository at this point in the history
  37. Fix namespace incremental parsing bug (#37770)

    There was a previous parsing change (#32999) which modified namespace
    parsing to allow modifiers and attributes on namespaces, to improve
    error recovery.
    
    This PR contained a bug because it didn't move the incremental parsing
    check to before parsing attributes and modifiers, which should now
    be included in incremental parsing to prevent changes from being dropped
    
    Fixes #37665, #37664, #37663
    agocke authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0cb99c2 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    2addc36 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    d9c2fa9 View commit details
    Browse the repository at this point in the history
  40. Update ownership of CompilerGeneratorTools to the compiler team

    Otherwise the infrastructure team gets tagged and that's not useful.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    c99171e View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    73d9761 View commit details
    Browse the repository at this point in the history
  42. Add ref, qualified generic name detection, and tuple handling for Spe…

    …culativeT completion. (#37323)
    
    Fixes #37224
    Fixes #37268
    Fixes #37361
    pawchen authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    86ea5fd View commit details
    Browse the repository at this point in the history
  43. Remove inaccessible attributes when generating from the navigation bar

    When generating code from the navigation bar, we should remove
    inaccessible attributes, since there's no value in spitting code that
    won't build.
    
    Fixes #37621
     although perhaps not
    in the ideal way. We may also want to generally drop all nullable
    attributes when generating VB code, but that's being tracked by
    #30327 as there's some design
    questions still out.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    2e45b4e View commit details
    Browse the repository at this point in the history
  44. Remove unused usings

    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    26c27e9 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    4d4de38 View commit details
    Browse the repository at this point in the history
  46. PR feedback.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    51a8527 View commit details
    Browse the repository at this point in the history
  47. PR feedback cleanup.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    467d1dc View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    31453b5 View commit details
    Browse the repository at this point in the history
  49. Update dependencies from https://github.com/dotnet/arcade build 20190…

    …802.16
    
    - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19402.16
    dotnet-maestro authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    4f2f8ef View commit details
    Browse the repository at this point in the history
  50. Update dependencies from https://github.com/dotnet/arcade build 20190…

    …803.1
    
    - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19403.1
    dotnet-maestro authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    4aff72f View commit details
    Browse the repository at this point in the history
  51. Update dependencies from https://github.com/dotnet/arcade build 20190…

    …804.1
    
    - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19404.1
    dotnet-maestro authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    66ec9af View commit details
    Browse the repository at this point in the history
  52. Update dependencies from https://github.com/dotnet/arcade build 20190…

    …807.9
    
    - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19407.9
    dotnet-maestro authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    aef644f View commit details
    Browse the repository at this point in the history
  53. React to dotnet/arcade#3120

    agocke authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a904da3 View commit details
    Browse the repository at this point in the history
  54. Convert the type inferrer tests to be Theories

    Most of the type inferrer tests test both overloads of the
    type inferrence service -- the one that takes a span and one that
    takes a position. Both (by default) were tested, but it's impossible
    without actually debugging a test to know which one failed. I had a
    particular irritating case where I made a behavior change and had to
    update a bunch of tests with new baselines, but since the behavior
    also split between both APIs it was confusing to figure out what was
    going on.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    9ba41e0 View commit details
    Browse the repository at this point in the history
  55. Move call to RegisterDocumentOptionsProvider to TestWorkspace constru…

    …ctor
    
    This code as was written was a bit shaky. The Workspace constructor
    would ask for the workspace option service, and this would cause us
    (while creating the service) to call RegisterDocumentOptionsProvider.
    If that results in one of the options providers also asking for options,
    we recursively request the option service while still trying to
    construct it.
    
    The fix is just to move the registration to the workspace constructor
    itself which removes the circularity and matches the pattern used
    everywhere else.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    2d814d9 View commit details
    Browse the repository at this point in the history
  56. Remove flighting and have a checkbox opt out of new .editorconfig sup…

    …port
    
    At this point, the flighting controls we have aren't really useful
    anymore: we want this on for everybody unless the opt out, and that
    opt-out would be specific to certain users that are running into issues
    with the new system to keep them unblocked. I'm keeping this a per-
    machine setting (that doesn't roam) because it's really repo or VS
    version specific.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0425771 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    ffbf9a7 View commit details
    Browse the repository at this point in the history
  58. Update the simplification engine to remove ?s in #nullable disable

    When we're generating code, we always will annotate any reference
    types that are known to be nullable. But we might be sticking that
    resulting syntax into a different file where the context disables
    annotations; now we will remove those ? tokens to keep code building.
    
    It's possible we could do fancier things too where we instead realize
    the user wants to surround the code with #nullable enable, but for now
    we'll take this simple approach.
    
    Fixes #37178
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    3f1b0b4 View commit details
    Browse the repository at this point in the history
  59. Enhance type inferrence of reference types before a ??

    If we have inferred the thing to the left of a ?? is a reference type,
    we can annotate it; we didn't update that yet in the type inferrer
    though until we had the ability to properly remove the ? if the
    user wasn't in the right context. The parent commit of this commit fixes
    that so we can fix this now.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    704c217 View commit details
    Browse the repository at this point in the history
  60. Add some handling around nullability and error types

    When we're inferring around error types, we won't add ?s for now because
    they're more likely to be classes than structs, and we don't know yet
    exactly where the resulting syntax will get put.
    
    #37852 will track a fancier fix
    to this.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    87a75db View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    615a2f1 View commit details
    Browse the repository at this point in the history
  62. don't crash Vs because OOP lost its connection

    we can lose OOP connection due to many reason such as user explicitly killing OOP process.
    
    we have made that not to kill VS but this one place it looks like it can still crash VS.
    
    this could be due to StreamJsonRpc now throwing ConnectionLostException rather than general RemoteInvocationException it used to throw for everything.
    
    when we lost exception we do the normal pattern. showing info bar asking users to restart VS and send NFW but move on.
    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0f23853 View commit details
    Browse the repository at this point in the history
  63. Move poolableObjs changes to IDE only.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    055778f View commit details
    Browse the repository at this point in the history
  64. Cleanup.

    petrroll authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b846a0e View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    52dd590 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    3ab40ae View commit details
    Browse the repository at this point in the history
  67. Move to new ilasm version

    The latest version of ilasm produced by coreclr is now a fully
    independent executable; it no longer depends on having a full runtime
    laid down next to it.
    
    This means we can vastly simplify how it is deployde in our
    infrastructure. The package can now be included and have ilasm manually
    copied out. This is similar to the approach that we take for our
    diasymreader native dependencies.
    
    closes #37582
    related #25930, #25144
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a1735ec View commit details
    Browse the repository at this point in the history
  68. Fix up some test failures

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d9a56f4 View commit details
    Browse the repository at this point in the history
  69. Create a UIContext triggered by projects in the VisualStudioWorkspace

    Sometimes other features need to light up if there's a C# or VB project
    present. A good example is some of the test tooling: they don't want to
    load their components with Roslyn unless somebody is also using the test
    tooling, but you don't want to accidentally load Roslyn if somebody is
    using the test tooling only for C++.
    
    Fixes https://devdiv.visualstudio.com/DevDiv/_queries/edit/844761/
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    fbad8c5 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    eadfdfe View commit details
    Browse the repository at this point in the history
  71. More work

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    2cd6ee0 View commit details
    Browse the repository at this point in the history
  72. Unskip test that was skipped during nullable prototype work

    It passes now; I'm guessing something was doing bad analysis at one
    point and saying something was nullable when it wasn't.
    
    Fixes #30035
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a71fca0 View commit details
    Browse the repository at this point in the history
  73. Fix version typos

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    7131081 View commit details
    Browse the repository at this point in the history
  74. Configuration menu
    Copy the full SHA
    2faf957 View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    7ee2b0f View commit details
    Browse the repository at this point in the history
  76. Fix casing errors

    NuPkg files are unpacked using lower case path names on Linux. This is
    why the build wasn't copying the files.
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    0388c83 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    ab13ada View commit details
    Browse the repository at this point in the history
  78. Implement type syntax generation for nullable arrays

    This adds an interesting wrinkle to our algorithm for converting
    array symbols back to syntax. For regular nested arrays the compiler
    implicitly "reverses" the array rank specifiers so the order you see
    them in source is the order you index them. But with nullable
    annotations, we do not reorder across question marks.
    jasonmalinowski authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a07ae0e View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    be00d59 View commit details
    Browse the repository at this point in the history
  80. Issue #37030: Enum member formatting should follow csharp_space_aroun…

    …d_declaration_statements
    phizch authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d31ba35 View commit details
    Browse the repository at this point in the history
  81. Tests for Issue #37030: Enum member formatting should follow csharp_s…

    …pace_around_declaration_statements
    phizch authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    41d36b0 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    5bb4b24 View commit details
    Browse the repository at this point in the history
  83. Include more projects

    Including more projects that have a dependency on ilasm.
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    2e0584e View commit details
    Browse the repository at this point in the history
  84. Update src/Test/Utilities/Portable/Metadata/IlasmUtilities.cs

    Co-Authored-By: Nick Guerrera <nicholg@microsoft.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    c497064 View commit details
    Browse the repository at this point in the history
  85. Use destkop ilasm

    The desktop ilasm contains features not present in coreclr; specifically
    the ability to generate PDB files for net modules. Need to continue
    using desktop ilasm as long as our tests depend on this.
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    6b3552a View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    db83026 View commit details
    Browse the repository at this point in the history
  87. added api usage telemetry reporter

    for now, it only reports method calls and member references from metadata reference.
    
    it reports data as hash value to protect privacy
    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    63d51ad View commit details
    Browse the repository at this point in the history
  88. Remove unused MSBuild property

    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    4b0a64a View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    1053654 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    b7dd327 View commit details
    Browse the repository at this point in the history
  91. Update src/Workspaces/Remote/Core/Telemetry/ApiUsageIncrementalAnalyz…

    …erProvider.cs
    
    Co-Authored-By: Joey Robichaud <joseph.robichaud@microsoft.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    a8a814f View commit details
    Browse the repository at this point in the history
  92. Update src/Workspaces/Remote/Core/Telemetry/ApiUsageIncrementalAnalyz…

    …erProvider.cs
    
    Co-Authored-By: Joey Robichaud <joseph.robichaud@microsoft.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    84c655d View commit details
    Browse the repository at this point in the history
  93. changed our task center status bar to say "low priority background pr…

    …ocess" rather than "live analysis" to reduce confusion on what "live analysis" means since term "live analysis" has strong association with "errors" in VS.
    
    also, it now shows ## of pending work and whether BG process is paused or not.
    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    66e1877 View commit details
    Browse the repository at this point in the history
  94. removed duplicated code

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    445e758 View commit details
    Browse the repository at this point in the history
  95. Update MS.CA.EditorFeatures2.UnitTests splitting

    This DLL should be marked for splitting in our test runner. When we did
    the great assembly rename though this was missed. Fixing.
    jaredpar authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    8dad52e View commit details
    Browse the repository at this point in the history
  96. Update src/Features/Core/Portable/SolutionCrawler/WorkCoordinator.Inc…

    …rementalAnalyzerProcessor.cs
    
    Co-Authored-By: Sam Harwell <sam@tunnelvisionlabs.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    6bcc107 View commit details
    Browse the repository at this point in the history
  97. PR feedbacks

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    61f7977 View commit details
    Browse the repository at this point in the history
  98. Update src/Features/Core/Portable/SolutionCrawler/SolutionCrawlerProg…

    …ressReporter.cs
    
    Co-Authored-By: CyrusNajmabadi <cyrus.najmabadi@gmail.com>
    2 people authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b40e11c View commit details
    Browse the repository at this point in the history
  99. PR feedback.

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    d019f5f View commit details
    Browse the repository at this point in the history
  100. comment update

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    318bff9 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    7275e0a View commit details
    Browse the repository at this point in the history
  102. more comment

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    b8543d2 View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    88d6dbf View commit details
    Browse the repository at this point in the history
  104. more comments!

    heejaechang authored and joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    ee95e73 View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    af04182 View commit details
    Browse the repository at this point in the history
  106. Configuration menu
    Copy the full SHA
    98d9a87 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    cef77b3 View commit details
    Browse the repository at this point in the history
  108. Rebase onto 'master'

    joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    c6f9895 View commit details
    Browse the repository at this point in the history
  109. Fix conflicts with 'master'

    joperator committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    76dab70 View commit details
    Browse the repository at this point in the history