In earlier versions of Visual Studio (prior to the roslyn preview), a custom build task did not have access to the parse tree or the semantic model of the c# compiler. Do we have access to these structures in custom build tasks (or something equivalent to custom build tasks) in the new "Roslyn" based Visual Studio "14" CTP?
I.e. can you do something similar to a custom build tasks that can not merely read the text of the source code file, but also access the C# SyntaxTree and the .NET/C# SematicModel employed by Visual Studio "14" CTP during the build?
I failed to locate help files or documentation for the Visual Studio SDK for the "14" CTP build. Are there any documentation to be found?
Motivation
I want to build a code generator (made popular with XAML and other partial class/code behind paradigms) that have access the SemanticModel (i.e. the typed code graph) of the CSharp compilation. I currently have a code generator that parses the source code file using mono Cecil, but this of course only gives be access of the syntax tree of the single file have the custom task and not the entire tree or resolved graph of entire CSharp/.NET compilation.