1. 02 4月, 2017 1 次提交
  2. 29 3月, 2017 2 次提交
  3. 22 3月, 2017 1 次提交
  4. 10 2月, 2017 1 次提交
  5. 31 12月, 2016 3 次提交
  6. 29 12月, 2016 2 次提交
  7. 23 12月, 2016 1 次提交
  8. 14 12月, 2016 1 次提交
    • R
      Add Razor shims · cc06ef45
      Ryan Nowak 提交于
      Add Razor Language Service shim for accessing the remote client
      
      Add Razor Remote Workspace shim for getting access to the solution in
      the ServiceHub process. This relies on the same set of Roslyn services
      being called by the client to initialize state in the remote process.
      
      Add overloads to the 'remote' solution service to avoid a need for IVT in
      in the Razor Remote Workspace shim. Checksum is internal to Workspace.
      cc06ef45
  9. 30 11月, 2016 1 次提交
    • J
      Centralize CopyNuGetImplementations · f6e3b30a
      Jared Parsons 提交于
      This setting controls binary deployment hence it needs to be centrally
      managed to help ensure we have a correct build.  Custom projects can
      continue to control this setting themselves.
      f6e3b30a
  10. 29 11月, 2016 1 次提交
  11. 19 11月, 2016 1 次提交
  12. 11 11月, 2016 1 次提交
  13. 05 11月, 2016 1 次提交
  14. 04 11月, 2016 1 次提交
  15. 02 11月, 2016 1 次提交
  16. 31 10月, 2016 1 次提交
  17. 28 10月, 2016 1 次提交
  18. 26 10月, 2016 1 次提交
  19. 24 10月, 2016 2 次提交
  20. 22 10月, 2016 1 次提交
    • J
      TLDR: artifacts are going to move around in Binaries\Debug and the directory... · b9ba3e9e
      Jared Parsons 提交于
      TLDR: artifacts are going to move around in Binaries\Debug and the directory is going to get a lot bigger.
      
      At a high level build projects can be classified into three categories based on how they write output:
      
      - incorrect: a given output path is written to more than once with different contents
      - less correct: a given output path is written to more than once but always with the same content
      - correct: a given output path is written to exactly once
      
      Today the roslyn build is decidedly “incorrect” as pretty much every file is written directly into Binaries\Debug. This means it ends up writing pretty much every Visual Studio SDK DLL twice: once for Dev14 and once for Dev15. For example at various points in the build Binaries\Debug\Microsoft.VisualStudio.Text.Data.dll may refer to Dev14 and at others it’s Dev15. If this seems like a scary proposition for a build that’s because it is indeed scary and it has real consequences. By now pretty much everyone on the team has hit the build race condition that is dragging down our PRs.
      
      The general fix here is to move build outputs into separate directories. Instead of building to $(Configuration) projects now build into say $(Configuration)\Exes\$(MSBuildProjectFileName). This will have a substantial increase in the size of Binaries. We will be looking into ways to reduce that. In the short term though build stability far outweighs the size increase.
      
      This change takes us most of the way to "correct". There are several places I had to compromise in order to get this initial change in:
      
      - UnitTests still build to a common output folder (one for Dev14, another for Dev15). Pulling unit tests apart is going to take a bit of work.
      - Every project has a <RoslynProjectType> entry. This will go away in the future for most projects. It's temporarily needed so I can fix roslyn-internal in parallel without taking down the build.
      - VSL.Imports.targets is messy. Unavoidable for now due to the above. It will get cleaner as I iterate on this.
      
      None of these are relevant to the underlying race condition. Hence it's okay to push them off.
      b9ba3e9e
  21. 07 10月, 2016 1 次提交
  22. 30 9月, 2016 1 次提交
  23. 27 9月, 2016 1 次提交
  24. 25 9月, 2016 8 次提交
  25. 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
  26. 02 9月, 2016 3 次提交