18 references to Resources
dotnet-getdocument (18)
artifacts\obj\dotnet-getdocument\Release\net10.0\Microsoft.Extensions.ApiDescription.Tool.Resources.cs (1)
10
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(
Resources
)));
Commands\InvokeCommand.cs (3)
78
throw new CommandException(
Resources
.FormatOldNETCoreAppProject(
129
throw new CommandException(
Resources
.FormatNETStandardProject(projectName));
133
Resources
.FormatUnsupportedFramework(projectName, targetFramework.Identifier));
ProjectOptions.cs (9)
24
AssemblyPath = command.Option("--assembly <Path>",
Resources
.AssemblyDescription);
25
AssetsFile = command.Option("--assets-file <Path>",
Resources
.AssetsFileDescription);
26
TargetFramework = command.Option("--framework <FRAMEWORK>",
Resources
.TargetFrameworkDescription);
27
Platform = command.Option("--platform <Target>",
Resources
.PlatformDescription);
28
ProjectName = command.Option("--project <Name>",
Resources
.ProjectDescription);
29
RuntimeFrameworkVersion = command.Option("--runtime <RUNTIME_IDENTIFIER>",
Resources
.RuntimeDescription);
36
throw new CommandException(
Resources
.FormatMissingOption(AssemblyPath.LongName));
41
throw new CommandException(
Resources
.FormatMissingOption(ProjectName.LongName));
46
throw new CommandException(
Resources
.FormatMissingOption(TargetFramework.LongName));
src\Tools\GetDocumentInsider\src\Commands\CommandBase.cs (3)
28
var prefixOutput = command.Option("--prefix-output",
Resources
.PrefixDescription);
29
var quiet = command.Option("-q|--quiet",
Resources
.QuietDescription);
52
throw new CommandException(
Resources
.QuietAndVerboseSpecified);
src\Tools\GetDocumentInsider\src\ProgramBase.cs (2)
45
FullName =
Resources
.CommandFullName,
46
Name =
Resources
.CommandFullName,