Hello everybody
I am using Software factory toolkit
I want to access recipe argument value in files.I declare recipe argument in Createsolution.xml recipe.
<Argument Name="SolutionNamespace">
<Converter Type="Microsoft.Practices.RecipeFramework.Library.Converters.NamespaceStringConverter, Microsoft.Practices.RecipeFramework.Library"/>
<ValueProvider Type="ExpressionEvaluatorValueProvider" Expression="$(safeprojectname)"/>
</Argument>
Now I use $SolutionNamespace$ argument in .cs or csproj files but it give $SolutionNamespace$.
How could I get value of argument declare in Recipe
Thanks