Merge pull request #64 from bernd5/csfile
"ReadyToRun"- template added (similar to LinqPad-extension)
This commit is contained in:
Коммит
9159f479bb
|
@ -42,6 +42,11 @@ namespace QuoterService.Controllers
|
|||
};
|
||||
|
||||
responseText = quoter.QuoteText(arguments.SourceText, arguments.NodeKind);
|
||||
|
||||
if (arguments.ReadyToRun)
|
||||
{
|
||||
responseText = ReadyToRunHelper.CreateReadyToRunCode(arguments, responseText);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
|
|
@ -12,5 +12,6 @@ namespace QuoterWeb
|
|||
public bool KeepRedundantApiCalls { get; set; }
|
||||
public bool AvoidUsingStatic { get; set; }
|
||||
public bool GenerateLinqPad { get; set; }
|
||||
public bool ReadyToRun { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace QuoterWeb
|
||||
{
|
||||
public static class ReadyToRunHelper
|
||||
{
|
||||
public static string CreateReadyToRunCode(QuoterRequestArgument arguments, string roslynCode)
|
||||
{
|
||||
return @$"using System;
|
||||
using System.Linq;
|
||||
using Microsoft.CodeAnalysis;
|
||||
using Microsoft.CodeAnalysis.CSharp;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;{(arguments.AvoidUsingStatic ? string.Empty : @"
|
||||
|
||||
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;")}
|
||||
|
||||
/*
|
||||
{arguments.SourceText}
|
||||
*/
|
||||
|
||||
var tree = SyntaxTree(
|
||||
//CODE FROM ROSLYN QUOTER:
|
||||
{roslynCode}
|
||||
//END
|
||||
);
|
||||
|
||||
var refApis = AppDomain.CurrentDomain.GetAssemblies()
|
||||
.Where(a => !a.IsDynamic)
|
||||
.Select(a => MetadataReference.CreateFromFile(a.Location));
|
||||
|
||||
var compilation = CSharpCompilation.Create(""something"", new[] {{ tree }}, refApis);
|
||||
var diag = compilation.GetDiagnostics().Where(e => e.Severity == DiagnosticSeverity.Error).ToList();
|
||||
|
||||
foreach(var d in diag)
|
||||
{{
|
||||
Console.WriteLine(d);
|
||||
}}";
|
||||
}
|
||||
}
|
||||
}
|
|
@ -55,6 +55,11 @@
|
|||
<input id="avoidUsingStatic" type="checkbox" /> Do not require 'using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;'
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input id="readyToRun" type="checkbox" /> Ready-To-Run (with compilation and diagnostics)
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<button id="submitButton" type="button" onclick="onSubmitClick();">Get Roslyn API calls to generate this code!</button> <span id="working" style="display: none">Working...</span>
|
||||
</div>
|
||||
|
|
|
@ -27,6 +27,7 @@ function generateArguments() {
|
|||
var preserveOriginalWhitespace = getCheckboxValue("preserveOriginalWhitespace");
|
||||
var keepRedundantApiCalls = getCheckboxValue("keepRedundantApiCalls");
|
||||
var avoidUsingStatic = getCheckboxValue("avoidUsingStatic");
|
||||
var readyToRun = getCheckboxValue("readyToRun");
|
||||
var arguments = new Object();
|
||||
arguments.sourceText = editor.getValue();
|
||||
arguments.nodeKind = nodeKind;
|
||||
|
@ -51,6 +52,10 @@ function generateArguments() {
|
|||
arguments.avoidUsingStatic = true;
|
||||
}
|
||||
|
||||
if (readyToRun) {
|
||||
arguments.readyToRun = true;
|
||||
}
|
||||
|
||||
return arguments;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче