1. 08 9月, 2016 1 次提交
    • H
      add new RemoteHostClient which will run services in proc · b18b69e1
      Heejae Chang 提交于
      this is to make develop - debug cycle easiler when adding new features to service hub.
      
      to enable this, turn on Roslyn/FeatureManager/Features/RemoteHost and RemoteHostInProc
      
      once enabled, InProcRemoteHostClient will be used instead of ServiceHubRemoteHostClient
      
      except concrete type of RemoteHostClient, all other parts, exactly same code will be used.
      
      InProcRemoteHostClient can be used in unit test to test client and server side as they are.
      b18b69e1
  2. 25 8月, 2016 1 次提交
  3. 17 8月, 2016 1 次提交
  4. 16 8月, 2016 1 次提交
  5. 05 8月, 2016 1 次提交
  6. 02 8月, 2016 1 次提交
    • J
      Remove many of the dependency projects · 585d3d19
      Jared Parsons 提交于
      The dependency projects serve a few purposes:
      
      - Help ensure package unity by serving as a single place for a NuGet reference.
      - Make NuGet updates simple by having a single place to change.
      - Grouping together related packages to make it easy to take a dependency on say Visual Studio editor.
      
      The first two points are largely obsolete now that our project.json references are strictly validated on every build and have a single update mechanism.  This meant a lot of our depnedency projects were just making Roslyn.sln bigger.
      
      As such I went through and deleted all of them which had only 1 or 2 project.json entries.  I left the VS ones which tend to group 10+ references together.  They are still serving a valid "reference VS" purpose.
      585d3d19
  7. 30 7月, 2016 3 次提交
    • H
      porting OOP to preview 4 branch · c141605a
      Heejae Chang 提交于
      changes include
      make SourceText::GetChecksum and AnalyzerTelemetry contructor public.
      
      added MustRunInProc in IBuiltInAnalyzer and some clean up around serializing Solution/Project/DocumentId and how DocumentState is exposed.
      
      simplified temporary storage service's temporary storage management and added ability to attach to existing temporary storage
      
      solution checksum and serialization service.
      
      added remote host client
      - this gives an ability for host (vs) to talk to remote host (service hub)
      
      rename and moving files between feature/workspace layers
      - only real change is having ICompilerDiagnosticAnalyzer interface which can either have inproc implementation or out of proc implementation.
      - inproc is needed since diagnostics are in feature layer and one who uses feature layer out side of VS host need an implementation.
      
      added RemoteWorkspace
      - RemoteWorkspace has host agnostic implementation of roslyn features/services/workspace that will run in remote host
      
      added service hub component and setup project for service hub
      - service hub component is basically thin layer that deals with converting data to pass in to RemoteWorkspace
      
      made devdiv insertion tool to ignore servicehub related files
      
      support byte and char array natively in ObjectReader/Writer
      c141605a
    • J
      Fixed a merge conflict · db788a3d
      Jared Parsons 提交于
      db788a3d
    • J
      Added the RepoUtil project · d5f860eb
      Jared Parsons 提交于
      d5f860eb
  8. 27 7月, 2016 2 次提交
  9. 23 7月, 2016 1 次提交
  10. 21 7月, 2016 3 次提交
  11. 14 7月, 2016 1 次提交
  12. 13 7月, 2016 1 次提交
  13. 08 7月, 2016 3 次提交
  14. 07 7月, 2016 1 次提交
  15. 01 7月, 2016 1 次提交
  16. 29 6月, 2016 1 次提交
  17. 28 6月, 2016 1 次提交
    • T
      add flag for specifying trace upload location · 8f8c6655
      Ty Overby 提交于
      * add flag for specifying trace upload location
      
      * start porting the command line parser
      
      * finish mono option parsing
      
      * switch to project.json
      
      * stash
      
      * added project.json
      
      * disable signing
      8f8c6655
  18. 24 6月, 2016 1 次提交
  19. 02 6月, 2016 1 次提交
  20. 13 5月, 2016 2 次提交
  21. 04 5月, 2016 1 次提交
  22. 29 4月, 2016 1 次提交
  23. 22 4月, 2016 1 次提交
  24. 20 4月, 2016 6 次提交
  25. 16 4月, 2016 1 次提交
    • D
      Unify NuGet dependencies across the tree · 4aef0b06
      David Kean 提交于
      To prevent projects across the tree from having different dependencies, we unify
      external package dependencies by creating empty C# projects that represent them.
      We then make use of project.json package inheritance (where a project inherits
      all packages dependencies from their dependencies) to unify it across the tree.
      
      No projects outside of this tree, should be directly referencing versions of
      these dependencies manually.
      
      For this check-in I've tackled Metadata, Reflection, and DiaSymReader. Will tackle
      the rest in future commits.
      4aef0b06
  26. 02 4月, 2016 1 次提交
    • A
      Update corefx+coreclr refs to -rc2-23931 · 71427763
      Andy Gocke 提交于
      What's been done:
      - All the RTM references have not been changed
      - All the prerelease refs have been bumped
      - All the projects with prerelease refs have been
        changed to use netstandard1.3 instead of dotnet5.4
      - Crossgen has been updated to point to the new CLR directory
      - The NuSpecs have been updated to use the new refs
      
      There is also now a stand-alone project for referencing
      CoreCLR that can be updated independently of corefx. It will
      need to be added to the closed solution before the refs in
      the existing projects can be removed.
      71427763
  27. 30 3月, 2016 1 次提交