2 implementations of Output
dotnet-user-secrets (2)
src\aspnetcore\src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
57public virtual void Output(string message)
src\aspnetcore\src\Tools\Shared\CommandLine\NullReporter.cs (1)
20public void Output(string message)
9 references to Output
dotnet-user-secrets (9)
Internal\ListCommand.cs (5)
42context.Reporter.Output(Resources.Error_No_Secrets_Found); 48context.Reporter.Output(Resources.FormatMessage_Secret_Value_Format(secret.Key, secret.Value)); 61context.Reporter.Output("//BEGIN"); 62context.Reporter.Output(SecretsStore.Serialize(secrets)); 63context.Reporter.Output("//END");
Internal\SetCommand.cs (2)
81context.Reporter.Output(Resources.FormatMessage_Saved_Secrets(provider.CurrentData.Count)); 102context.Reporter.Output(Resources.FormatMessage_Saved_Secret(_keyName));
src\aspnetcore\src\Tools\Shared\SecretsHelpers\UserSecretsCreator.cs (2)
39reporter.Output(SecretsHelpersResources.FormatMessage_ProjectAlreadyInitialized(projectPath)); 75reporter.Output(SecretsHelpersResources.FormatMessage_SetUserSecretsIdForProject(newSecretsId, projectPath));