1. 11 7月, 2017 2 次提交
  2. 10 7月, 2017 1 次提交
  3. 07 7月, 2017 1 次提交
  4. 30 6月, 2017 1 次提交
  5. 29 6月, 2017 1 次提交
  6. 28 6月, 2017 1 次提交
  7. 15 6月, 2017 1 次提交
  8. 31 5月, 2017 1 次提交
  9. 26 5月, 2017 1 次提交
  10. 28 2月, 2017 1 次提交
  11. 24 2月, 2017 1 次提交
  12. 23 2月, 2017 1 次提交
  13. 11 1月, 2017 1 次提交
  14. 04 1月, 2017 1 次提交
  15. 15 11月, 2016 1 次提交
    • J
      Defer the initialization of a VisualStudioWorkspace until necessary · 5e1831af
      Jason Malinowski 提交于
      Previously, when a VisualStudioWorkspace was constructed we were
      doing a bunch of work in the constructor talking to the UI thread. This
      was dangerous because we might get composed on a background thread.
      This moves the dangerous initialization until we're creating a project
      when we know we have a UI thread available.
      
      In this refactoring I moved the project tracker and a few other fields
      into a private class so it's more obvious what's dangerous to touch.
      I also do a pass through all consumers of the property and either
      update it to use the deferred state directly (because we're only
      consuming projects, so it's fine if we don't have anything) or to the
      factory method if we actually are creating projects.
      
      This does temporarily regress the ability to create projects on
      background threads, but it was unclear if that was generally safe to
      start with.
      5e1831af
  16. 13 9月, 2016 1 次提交
  17. 03 9月, 2016 2 次提交
  18. 02 9月, 2016 4 次提交
  19. 31 8月, 2016 1 次提交
    • H
      make VS to send over initial assets in batch mode · 3765e967
      Heejae Chang 提交于
      this makes sending over roslyn-internal solution data to OOP from 3 minutes to 4 seconds.
      
      after that, only changed assets are sent over which is usually less than 1-2ms.
      
      this optimization is only for actually moving data between 2 processes. there are other things involved which need to be optimized as well to make whole system to be faster than right now (which takes about 1+ mins for initial solution load)
      3765e967
  20. 23 8月, 2016 1 次提交
  21. 06 8月, 2016 1 次提交
  22. 05 8月, 2016 1 次提交
  23. 04 8月, 2016 1 次提交
    • H
      added abstraction in remote host and diagnostic service to prevent VS.Next dll... · ab0ce610
      Heejae Chang 提交于
      added abstraction in remote host and diagnostic service to prevent VS.Next dll from loading if remote host option is off.
      
      the abstraction I added here is specific to diagnostic service feature. that abstract solely exist to prevent VS.Next dll from loading if remote host option is off.
      
      this is different than IHostSpecificService abstraction I used to have that is generalized form of this abstraction which automatically figure out what to load based on option and layering/MEF composition of roslyn.
      
      in this model, each feature need to take care of this kind of issue.
      ab0ce610
  24. 30 7月, 2016 2 次提交
    • 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
    • P
      Clean up snapshot service naming · 1be90666
      Paul Vick 提交于
      1be90666
  25. 28 7月, 2016 1 次提交
  26. 27 7月, 2016 1 次提交