Scripty
Scripty copied to clipboard
Tools to let you use Roslyn-powered C# scripts for code generation
Great Tool!!! I think you can include aditional classes as "Walker" per Interface/Classes/Attributes. This is an example of my Default Interface Generation: ``` var compilation = Project.Analysis.GetCompilationAsync().Result; var walker =...
Using the MSBuild task in a .NET Standard class library, `Project.Analysis.Documents` is empty, as far as I can tell there's nothing in the Roslyn project at all. Dunno if this...
I'm forced to use MSBuild stuff because CustomTool is not supported by Scripty in a .net standard project. To use an assembly in my .csx script, I have first to...
I was wondering if bumping the .Net Framework version (i believe the .exe that's downloaded when you install Scripty via NuGet is v4.0) Would bumping this to v4.5 allow us...
Is there a way to not have the Scripty Custom Tool run scripts when they are saved? I only want my scripts executed when I explicitly right click and hit...
Thanks again for creating this Cake Addin, we really appreciate the effort that you have put in to creating it. We, the Cake Team, recently announced a new Cake Contrib...
` Output.SetFilePath(@"C:\DevSharp\GitDemo\ScriptyGenerator\DemoNameSpace\" + className + ".cs");` I do see the dir "DemoNameSpace" getting made and the file getting created but the file is not getting added to the project Jay
I don't know if this feasible within the Roslyn script API, but it would be nice if all `#r Microsoft.CodeAnalysis.*` directives automatically resolved to the same Roslyn DLLs Visual Studio...
I have _no idea_ what this would take (or if it's even possible), but sure would be helpful.
Perhaps I am using it wrong, but when I set the file path in Output.SetFilePath to a folder in my current project, it doesn't dump the file there. In fact,...