7 references to User
Microsoft.TemplateEngine.Abstractions (1)
Parameters\ParameterSetData.cs (1)
56return new ParameterData(p, value, isSet ? DataSource.User : DataSource.NoSource);
Microsoft.TemplateEngine.Edge (5)
Template\InputDataSet.cs (1)
53return new InputParameterData(p, value, isSet ? DataSource.User : DataSource.NoSource, isSet ? InputDataStateUtil.GetInputDataState(value) : InputDataState.Unset);
Template\InputDataSetExtensions.cs (1)
25new InputParameterData(p.Key, p.Value, DataSource.User, InputDataStateUtil.GetInputDataState(p.Value)))
Template\InputParameterData.cs (2)
24DataSource 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)
336templateParamsBuilder.SetParameterValue(paramFromTemplate, resolvedValue, DataSource.User);
Microsoft.TemplateEngine.Utils (1)
ParameterSetDataExtensions.cs (1)
21new ParameterData(p.Key, p.Value, DataSource.User))