2 writes to Error
Microsoft.TemplateEngine.Abstractions (2)
Installer\InstallerOperationResult.cs (2)
15Error = error; 22Error = InstallerErrorCode.Success;
7 references to Error
Microsoft.TemplateEngine.Abstractions (2)
Installer\InstallerOperationResult.cs (1)
45public bool Success => Error == InstallerErrorCode.Success;
Installer\UpdateResult.cs (1)
28: base(installResult.Error, installResult.ErrorMessage, installResult.TemplatePackage)
Microsoft.TemplateEngine.Cli (4)
TemplatePackageCoordinator.cs (2)
269resultStatus = result.Error == InstallerErrorCode.PackageNotFound ? NewCommandStatus.NotFound : NewCommandStatus.InstallFailed; 817switch (result.Error)
TemplatePackageDisplay.cs (2)
128switch (result.Error) 337switch (result.Error)
Microsoft.TemplateEngine.Edge (1)
Installers\NuGet\NuGetInstaller.cs (1)
377return UpdateResult.CreateFailure(updateRequest, uninstallResult.Error, uninstallResult.ErrorMessage, []);