3 implementations of Output
dotnet-user-secrets (2)
src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
57public virtual void Output(string message)
src\Tools\Shared\CommandLine\NullReporter.cs (1)
20public void Output(string message)
Microsoft.Extensions.SecretManager.Tools.Tests (1)
src\Tools\Shared\TestHelpers\TestReporter.cs (1)
22public void Output(string message)
9 references to Output
dotnet-user-secrets (9)
Internal\ListCommand.cs (5)
43context.Reporter.Output(Resources.Error_No_Secrets_Found); 49context.Reporter.Output(Resources.FormatMessage_Secret_Value_Format(secret.Key, secret.Value)); 62context.Reporter.Output("//BEGIN"); 63context.Reporter.Output(jObject.ToString(Formatting.Indented)); 64context.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\Tools\Shared\SecretsHelpers\UserSecretsCreator.cs (2)
39reporter.Output(SecretsHelpersResources.FormatMessage_ProjectAlreadyInitialized(projectPath)); 75reporter.Output(SecretsHelpersResources.FormatMessage_SetUserSecretsIdForProject(newSecretsId, projectPath));