From 3689238cb9ca77cbd7fa34dbd15003af87266e36 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 4 Dec 2017 18:44:33 +0200 Subject: Added Code Generation Library. --- .../Tango.CodeGeneration/Templates/CodeFile.cshtml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/Templates/CodeFile.cshtml (limited to 'Software/Visual_Studio/Tango.CodeGeneration/Templates/CodeFile.cshtml') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/Templates/CodeFile.cshtml b/Software/Visual_Studio/Tango.CodeGeneration/Templates/CodeFile.cshtml new file mode 100644 index 000000000..404a2d58e --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/Templates/CodeFile.cshtml @@ -0,0 +1,11 @@ +@foreach (var u in Model.Usings) +{ +
using @(u);
+} + +@foreach (var ns in Model.Namespaces) +{ +
@ns.GenerateCode()
+ + +} \ No newline at end of file -- cgit v1.3.1