1. 22 1月, 2020 1 次提交
  2. 15 1月, 2020 1 次提交
  3. 29 6月, 2019 1 次提交
  4. 10 12月, 2018 1 次提交
  5. 20 10月, 2018 12 次提交
  6. 05 9月, 2018 12 次提交
  7. 24 3月, 2018 1 次提交
  8. 21 11月, 2016 1 次提交
  9. 26 1月, 2016 1 次提交
  10. 15 1月, 2015 1 次提交
  11. 14 1月, 2015 2 次提交
  12. 20 6月, 2014 1 次提交
    • M
      Added MSBuildWorkspace.SkipUnrecognizedProjects property. · bf7f5976
      mattwar 提交于
      This property controls what happens when referenced projects are not recognized as supported project types during solution or project open. If set to false, an exception is thrown the first time an unrecognized project is encountered.  If set to false (the default) it raises an WorkspaceFailed event and continues, omitting the project from the resulting solution and leaving dangling project references.  Of course, if the project type is unrecognized but its metadata can be identified, the project reference is turned into a metadata references (as per existing behavior).
      
      Added tests for all cases of unrecognized projects; bad path, non-existing project file, unrecognized file extensions, unrecognized project type and unrecognized language.
      
      Updated HostWorkspaceServices to allow for searching for language services without forcing the language to be loaded.  Added ProjectFileExtensionAttribute and ProjectTypeGuidAttribute so ProjectFileLoader's can declare via MEF metadata information used to find them.
      
      Removed Project GUID from ProjectFileReference.  Project GUID's cannot be trusted. :-)
       (changeset 1279722)
      bf7f5976
  13. 15 4月, 2014 1 次提交
  14. 10 4月, 2014 1 次提交
    • M
      This change makes public means to access workspace and language services. · 7b62af6b
      mattwar 提交于
      FeaturePacks have changed to become HostServices.
      IWorkspaceServiceProvider has become HostWorkspaceServices
      ILanguageServiceProvider has become HostLanguageServices
      
      HostWorkspaceServices can be accessed directly from Workspace.Services.
      HostLanguageServices can be accessed directly from Project.LanguageServices.
      
      Some of the existing workspace and language services have been made public. (changeset 1226729)
      7b62af6b
  15. 05 4月, 2014 1 次提交
  16. 21 3月, 2014 1 次提交
    • M
      This changes removes the ProjectDependencyService and replaces the Solution's... · abd7654e
      mattwar 提交于
      This changes removes the ProjectDependencyService and replaces the Solution's itnernal transitive dependency tracking with the ProjectDependencyGraph.  After the change removing async projects from solutions, the service was no longer necessary, as dependency graphs (mostly on demand) can be computed and reused for most solution branching.  The solution's internal transitive dependency tracking then became redundant. (changeset 1210210)
      abd7654e
  17. 19 3月, 2014 1 次提交