7 references to User
Microsoft.TemplateEngine.Abstractions (1)
Parameters\ParameterSetData.cs (1)
56
return new ParameterData(p, value, isSet ? DataSource.
User
: DataSource.NoSource);
Microsoft.TemplateEngine.Edge (5)
Template\InputDataSet.cs (1)
53
return new InputParameterData(p, value, isSet ? DataSource.
User
: DataSource.NoSource, isSet ? InputDataStateUtil.GetInputDataState(value) : InputDataState.Unset);
Template\InputDataSetExtensions.cs (1)
25
new InputParameterData(p.Key, p.Value, DataSource.
User
, InputDataStateUtil.GetInputDataState(p.Value)))
Template\InputParameterData.cs (2)
24
DataSource dataSource = DataSource.
User
,
44
/// Source of the parameter value. If supplied by the host - leave the default value of <see cref="DataSource.
User
"/>.
Template\TemplateCreator.cs (1)
336
templateParamsBuilder.SetParameterValue(paramFromTemplate, resolvedValue, DataSource.
User
);
Microsoft.TemplateEngine.Utils (1)
ParameterSetDataExtensions.cs (1)
21
new ParameterData(p.Key, p.Value, DataSource.
User
))