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