Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <ward.matt@gmail.com>2015-01-28 21:22:15 +0300
committerMatt Ward <ward.matt@gmail.com>2015-02-03 13:38:55 +0300
commit15d484f26fd38e5e45aabf38c0b69abd339da690 (patch)
treeadf219e8a29786680ccc3f0c6fc62949443dfd22 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
parent14c19e06deab95f79357a7eca22d2b7521245933 (diff)
[Ide] Support conditionally generated text in file templates.
File templates can now conditionally generate code based on parameter values by using $if$, $else$ and $endif$. using System; $if$ ($UseLinq$ == true)using System.Linq; $endif$using System.Text;
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
index ac1dfd9341..f34d2d8949 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.csproj
@@ -3025,6 +3025,7 @@
<Compile Include="MonoDevelop.Ide.Projects\NewProjectConfiguration.cs" />
<Compile Include="MonoDevelop.Components\EventBoxTooltip.cs" />
<Compile Include="MonoDevelop.Ide.Templates\ProjectTemplateCreateInformation.cs" />
+ <Compile Include="MonoDevelop.Ide.Templates\FileTemplateParser.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Makefile.am" />