167 references to GetResourceString
dotnet-svcutil-lib (167)
artifacts\obj\dotnet-svcutil-lib\Debug\netstandard2.0\Microsoft.Tools.ServiceModel.Svcutil.SR.cs (167)
19internal static string @LogoFormat => GetResourceString("LogoFormat", @"Microsoft (R) WCF Service Model Proxy Generation Tool for .Net Core platform 23internal static string @HelpUsage1 => GetResourceString("HelpUsage1", @"USE:"); 25internal static string @HelpUsage2 => GetResourceString("HelpUsage2", @"- Generate web service proxy code from running services or static metadata documents."); 27internal static string @HelpExamples => GetResourceString("HelpExamples", @"-= EXAMPLES =-"); 29internal static string @HelpExamples2 => GetResourceString("HelpExamples2", @"dotnet-svcutil http://example.com/service.svc?wsdl"); 31internal static string @HelpExamples3 => GetResourceString("HelpExamples3", @"- Generate client code from a running service or online metadata documents."); 33internal static string @HelpExamples6 => GetResourceString("HelpExamples6", @"dotnet-svcutil *.wsdl *.xsd --language:C#"); 35internal static string @HelpExamples7 => GetResourceString("HelpExamples7", @"- Generate client code in Visual Basic from local metadata documents."); 37internal static string @HelpExamples8 => GetResourceString("HelpExamples8", @"dotnet-svcutil http://example.com/service.svc?wsdl -edb -n ""*,MyApplication.ServiceReference1"" -ct MyLibrary.MyCollection`1 -r ""{{MyLibrary,1.0.0}}"""); 39internal static string @HelpExamples9 => GetResourceString("HelpExamples9", @"- Generate client code from a running service using settings that emulate the default ""WCF Connected Service"" behavior in Visual Studio"); 41internal static string @HelpCommonOptionsCategory => GetResourceString("HelpCommonOptionsCategory", @"-= COMMON OPTIONS =-"); 43internal static string @HelpUsageCategory => GetResourceString("HelpUsageCategory", @"-= USAGE =-"); 45internal static string @HelpCodeGenerationSyntaxInput1 => GetResourceString("HelpCodeGenerationSyntaxInput1", @"The path to a metadata document (wsdl or xsd). Standard command-line wildcards can be used in the file path."); 47internal static string @HelpCodeGenerationSyntaxInput2 => GetResourceString("HelpCodeGenerationSyntaxInput2", @"The URL to a service endpoint that provides metadata or to a metadata document hosted online."); 49internal static string @HelpCodeGenerationSyntaxInput3 => GetResourceString("HelpCodeGenerationSyntaxInput3", @"The path to an XML file that contains a WS-Addressing EndpointReference for a service endpoint that supports WS-Metadata Exchange."); 51internal static string @HelpOptions => GetResourceString("HelpOptions", @"Options:"); 53internal static string @HelpInputUrl => GetResourceString("HelpInputUrl", @"<url>"); 55internal static string @HelpInputEpr => GetResourceString("HelpInputEpr", @"<epr>"); 57internal static string @HelpInputMetadataDocumentPath => GetResourceString("HelpInputMetadataDocumentPath", @"<metadata document path>"); 59internal static string @ParametersOut => GetResourceString("ParametersOut", @"<file>"); 61internal static string @ParametersNamespace => GetResourceString("ParametersNamespace", @"<string,string>"); 63internal static string @ParametersDirectory => GetResourceString("ParametersDirectory", @"<directory>"); 65internal static string @ParametersLanguage => GetResourceString("ParametersLanguage", @"<language>"); 67internal static string @ParametersReference => GetResourceString("ParametersReference", @"<package>"); 69internal static string @ParametersExcludeType => GetResourceString("ParametersExcludeType", @"<type>"); 71internal static string @ParametersCollectionType => GetResourceString("ParametersCollectionType", @"<type>"); 73internal static string @HelpNologoFormat => GetResourceString("HelpNologoFormat", @"Suppress the copyright and banner message. (Short Form: -{0})"); 75internal static string @HelpVerbosityFormat => GetResourceString("HelpVerbosityFormat", @"Determines the amount of information displayed by the tool. Valid values are '{0}'. (Short Form: -{1})"); 77internal static string @HelpDirectoryFormat => GetResourceString("HelpDirectoryFormat", @"Directory to create files in. Default: A directory called ServiceReference inside the current directory. (Short Form: -{0})"); 79internal static string @HelpOutFormat => GetResourceString("HelpOutFormat", @"The filename for the generated code. Default: derived from the WSDL definition name, WSDL service name or targetNamespace of one of the schemas. (Short Form: -{0})"); 81internal static string @HelpInternalFormat => GetResourceString("HelpInternalFormat", @"Generate classes that are marked as internal. Default: generate public classes. (Short Form: -{0})"); 83internal static string @HelpReferenceCodeGenerationFormat => GetResourceString("HelpReferenceCodeGenerationFormat", @"Package or project references to reuse types from. When generating clients, use this option to specify references in the user's project that might contain types representing the metadata being imported. The reference can be specified as a nuget package name and version or the path to a .Net Core project. (Short Form: -{0})"); 85internal static string @HelpNostdlibFormat => GetResourceString("HelpNostdlibFormat", @"Do not reference standard libraries. By default System.Runtime (mscorlib) and System.ServiceModel (WCF) libraries are referenced. (Short Form: -{0})"); 87internal static string @HelpNoTypeReuseFormat => GetResourceString("HelpNoTypeReuseFormat", @"Disable reusing types from project references. References provided with the --{1} option will only be considered for resolving collection types specified with the --{2} option. (Short Form: -{0})"); 89internal static string @HelpExcludeTypeCodeGenerationFormat => GetResourceString("HelpExcludeTypeCodeGenerationFormat", @"A fully-qualified or assembly-qualified type name to exclude from referenced contract types. (Short Form: -{0})"); 91internal static string @HelpCollectionTypeFormat => GetResourceString("HelpCollectionTypeFormat", @"A fully-qualified or assembly-qualified name of the type to use as a collection data type when code is generated from schemas. (Short Form: -{0})"); 93internal static string @HelpAutoSerializerFormat => GetResourceString("HelpAutoSerializerFormat", @"Automatically select the serializer. This tries to use the Data Contract serializer and uses the XmlSerializer if that fails. (Short Form: -{0})"); 95internal static string @HelpXmlSerializer => GetResourceString("HelpXmlSerializer", @"Generate data types that use the XmlSerializer for serialization and deserialization"); 97internal static string @HelpDataContractSerializer => GetResourceString("HelpDataContractSerializer", @"Generate data types that use the Data Contract Serializer for serialization and deserialization"); 99internal static string @HelpMessageContractFormat => GetResourceString("HelpMessageContractFormat", @"Generate Message Contract types. (Short Form: -{0})"); 101internal static string @HelpEnableDataBindingFormat => GetResourceString("HelpEnableDataBindingFormat", @"Implement the System.ComponentModel.INotifyPropertyChanged interface on all Data Contract types to enable data binding. (Short Form: -{0})"); 103internal static string @HelpLanguageFormat => GetResourceString("HelpLanguageFormat", @"The programming language to use for generating code. Provide either a language name registered in the machine.config file or provide the fully-qualified name of a class that inherits from System.CodeDom.Compiler.CodeDomProvider. Examples of language names to use are CS and VB. Default: C#. (Short Form: -{0})"); 105internal static string @HelpNamespaceFormat => GetResourceString("HelpNamespaceFormat", @"A mapping from a WSDL or XML Schema targetNamespace to a CLR namespace. Using the '*' for the targetNamespace maps all targetNamespaces without an explicit mapping to that CLR namespace. Default: derived from the target namespace of the schema document for Data Contracts. The default namespace is used for all other generated types. (Short Form: -{0})"); 107internal static string @HelpHelpFormat => GetResourceString("HelpHelpFormat", @"Display command syntax and options for the tool. (Short Form: -{0})"); 109internal static string @HelpWrappedFormat => GetResourceString("HelpWrappedFormat", @"Generated code will not unwrap ""parameters"" member of document-wrapped-literal messages. (Short Form: -{0})"); 111internal static string @HelpSyncFormat => GetResourceString("HelpSyncFormat", @"Generate synchronous methods for operations in addition to async. (Short Form: -{0})"); 113internal static string @MoreHelpFormat => GetResourceString("MoreHelpFormat", @"If you would like more help, type ""dotnet-svcutil -{0}"""); 115internal static string @ErrorPrefix => GetResourceString("ErrorPrefix", @"Error:"); 117internal static string @WarningPrefix => GetResourceString("WarningPrefix", @"Warning:"); 119internal static string @ErrUnknownSwitchFormat => GetResourceString("ErrUnknownSwitchFormat", @"Unrecognized option '{0}' specified."); 121internal static string @ErrArgumentWithoutValue => GetResourceString("ErrArgumentWithoutValue", @"The --{0} option requires a value to be passed, but none was found."); 123internal static string @ErrSingleUseSwitchFormat => GetResourceString("ErrSingleUseSwitchFormat", @"The --{0} option cannot be specified multiple times."); 125internal static string @ErrUnexpectedError => GetResourceString("ErrUnexpectedError", @"An error occurred in the tool."); 127internal static string @ErrCouldNotCreateCodeProviderFormat => GetResourceString("ErrCouldNotCreateCodeProviderFormat", @"A code provider could not be created for the value: '{0}' passed to the --{1} option. Verify that the code provider is properly installed and configured."); 129internal static string @ErrNotLanguageOrCodeDomTypeFormat => GetResourceString("ErrNotLanguageOrCodeDomTypeFormat", @"The value '{0}' passed to the --{1} option does not represent a defined language and it could not be loaded as a fully qualified CLR type."); 131internal static string @ErrNotCodeDomTypeFormat => GetResourceString("ErrNotCodeDomTypeFormat", @"The type '{0}' passed to the --{1} option is not a subclass of '{2}'."); 133internal static string @ErrCouldNotCreateInstanceFormat => GetResourceString("ErrCouldNotCreateInstanceFormat", @"Cannot create instance of the type '{0}' passed to the --{1} option."); 135internal static string @ErrDuplicateReferenceValuesFormat => GetResourceString("ErrDuplicateReferenceValuesFormat", @"The assembly '{1}' was loaded twice through the --{0} option. You may reference each assembly only once."); 137internal static string @ErrDuplicateValuePassedToTypeArgFormat => GetResourceString("ErrDuplicateValuePassedToTypeArgFormat", @"The value '{1}' was passed to the --{0} option multiple times. Each type may be specified only once."); 139internal static string @ErrCannotDisambiguateSpecifiedTypesFormat => GetResourceString("ErrCannotDisambiguateSpecifiedTypesFormat", @"More than one type with the same name exists in the set of referenced assemblies. Use assembly-qualified names to disambiguate between the --{0} types '{1}' and '{2}'"); 141internal static string @ErrCannotLoadSpecifiedTypeFormat => GetResourceString("ErrCannotLoadSpecifiedTypeFormat", @"No type could be loaded for the value '{1}' passed to the --{0} option. Ensure that the assembly this type belongs to is specified via the --{2} option."); 143internal static string @ErrCouldNotLoadTypesFromAssemblyAtFormat => GetResourceString("ErrCouldNotLoadTypesFromAssemblyAtFormat", @"Cannot load any types in assembly '{0}'."); 145internal static string @WrnCouldNotLoadTypesFromReferenceAssemblyAtFormat => GetResourceString("WrnCouldNotLoadTypesFromReferenceAssemblyAtFormat", @"Cannot load some types in assembly '{0}', types will not be available to the tool."); 147internal static string @ErrNoValidInputSpecified => GetResourceString("ErrNoValidInputSpecified", @"No valid input specified. Specify either a service url or a wsdl file."); 149internal static string @ErrInputSchemaParseErrorFormat => GetResourceString("ErrInputSchemaParseErrorFormat", @"XML Schema Parsing Error while reading: '{0}'. Verify that the XML is both well-formed and valid."); 151internal static string @ErrInputWsdlParseErrorFormat => GetResourceString("ErrInputWsdlParseErrorFormat", @"WSDL Parsing Error while reading: '{0}'. Verify that the XML is both well-formed and valid."); 153internal static string @ErrInputPolicyParseErrorFormat => GetResourceString("ErrInputPolicyParseErrorFormat", @"WS-Policy Parsing Error while reading: '{0}'. Verify that the XML is both well-formed and valid."); 155internal static string @ErrInputEPRFileParseErrorFormat => GetResourceString("ErrInputEPRFileParseErrorFormat", @"Cannot read Endpoint Reference from: '{0}'. Verify that the XML is both well-formed and valid."); 158internal static string @WrnWSMExFailedFormat => GetResourceString("WrnWSMExFailedFormat", @"WS-Metadata Exchange Error 163internal static string @ErrUnableToRetrieveMetadataFromUriFormat => GetResourceString("ErrUnableToRetrieveMetadataFromUriFormat", @"Cannot obtain Metadata from {0} 167internal static string @EnableMetadataHelpMessage => GetResourceString("EnableMetadataHelpMessage", @"If this is a Windows (R) Communication Foundation service to which you have access, please check that you have enabled metadata publishing at the specified address. For help enabling metadata publishing, please refer to the MSDN documentation at http://go.microsoft.com/fwlink/?LinkId=65455."); 169internal static string @ErrUnableToImportMetadata => GetResourceString("ErrUnableToImportMetadata", @"A critical error occurred while attempting to import metadata."); 171internal static string @ErrUnableToLoadInputs => GetResourceString("ErrUnableToLoadInputs", @"There was an error reading the loaded metadata."); 173internal static string @ErrUnableToLoadExtensionsFormat => GetResourceString("ErrUnableToLoadExtensionsFormat", @"There was an error loading import extensions. Make sure to provide the assemblies containing these extensions as reference assemblies using the --{0} option."); 176internal static string @ErrUnableToLoadMetadataDocumentFormat => GetResourceString("ErrUnableToLoadMetadataDocumentFormat", @"There was an error reading the metadata from one of the loaded documents. 180internal static string @ErrCodegenError => GetResourceString("ErrCodegenError", @"There was an error trying to generate code in the specified language. 183internal static string @ErrUnableToUniquifyFilenameFormat => GetResourceString("ErrUnableToUniquifyFilenameFormat", @"Cannot create output filename. Too many files are being created with the prefix '{0}'."); 185internal static string @ErrPathTooLongDirOnlyFormat => GetResourceString("ErrPathTooLongDirOnlyFormat", @"The resultant path '{0}' is too long. Review the --{1} option value."); 187internal static string @ErrPathTooLongFormat => GetResourceString("ErrPathTooLongFormat", @"The resultant path '{0}' is too long. Review the --{1} and --{2} option values."); 189internal static string @ErrCannotCreateDirectoryFormat => GetResourceString("ErrCannotCreateDirectoryFormat", @"Cannot create directory: '{0}'."); 191internal static string @ErrCannotCreateFileFormat => GetResourceString("ErrCannotCreateFileFormat", @"Cannot create output file: '{0}'."); 193internal static string @ErrCannotWriteFile => GetResourceString("ErrCannotWriteFile", @"Cannot write to output file."); 195internal static string @RetreivingMetadataMsgFormat => GetResourceString("RetreivingMetadataMsgFormat", @"Attempting to download metadata from '{0}' using WS-Metadata Exchange and HttpGet."); 197internal static string @GeneratingFiles => GetResourceString("GeneratingFiles", @"Generating files..."); 200internal static string @NoCodeWasGenerated => GetResourceString("NoCodeWasGenerated", @"No code was generated. 203internal static string @RequestReplyCallbackContractNotSupported => GetResourceString("RequestReplyCallbackContractNotSupported", @"Request/Reply callback contracts are not supported for .Net Core apps."); 205internal static string @ClientCredentialsComment => GetResourceString("ClientCredentialsComment", @"The client credentials"); 207internal static string @ConfigureEndpointCommentSummary => GetResourceString("ConfigureEndpointCommentSummary", @"Implement this partial method to configure the service endpoint."); 209internal static string @ErrBindingElementNotSupportedFormat => GetResourceString("ErrBindingElementNotSupportedFormat", @"Binding element of type '{0}' is not supported."); 211internal static string @ErrBindingTypeNotSupportedFormat => GetResourceString("ErrBindingTypeNotSupportedFormat", @"Binding type '{0}' is not supported."); 213internal static string @ErrEncodingNotSupportedFormat => GetResourceString("ErrEncodingNotSupportedFormat", @"Encoding '{0}' is not supported."); 215internal static string @ErrIncompatibleContractSoapEncodingFormat => GetResourceString("ErrIncompatibleContractSoapEncodingFormat", @"The contract '{0}' contains one or more operations with SOAP Encoding (use='encoded'). This is not supported by the current target framework. Only the non-encoded operations will be generated, if any."); 217internal static string @ErrMessageVersionNotSupportedFormat => GetResourceString("ErrMessageVersionNotSupportedFormat", @"MessageVersion '{0}' is not supported."); 219internal static string @ErrNoCompatibleEndpoints => GetResourceString("ErrNoCompatibleEndpoints", @"No endpoints compatible with .Net Core apps were found."); 221internal static string @ServiceEndpointComment => GetResourceString("ServiceEndpointComment", @"The endpoint to configure"); 223internal static string @WrnIncompatibleEndpointFormat => GetResourceString("WrnIncompatibleEndpointFormat", @"Endpoint '{0}' at address '{1}' contains one or more bindings not compatible with .Net Core apps, skipping..."); 225internal static string @CodeExpressionCouldNotFindEndpoint => GetResourceString("CodeExpressionCouldNotFindEndpoint", @"Could not find endpoint with name '{0}'."); 227internal static string @WrnExtraParamsOnInputFileParamIgnoredFormat => GetResourceString("WrnExtraParamsOnInputFileParamIgnoredFormat", @"An input parameters file was specified in the command line, the following parameter(s) will be ignored: {0}."); 229internal static string @Microsoft_Copyright_CommandLine_Logo => GetResourceString("Microsoft_Copyright_CommandLine_Logo", @"Copyright (c) Microsoft Corporation. All rights reserved."); 231internal static string @NotClientBaseType => GetResourceString("NotClientBaseType", @"Type does not inherit from ClientBase<T>"); 233internal static string @BindingBinaryMessageEncodingVersionNotSupportedFormat => GetResourceString("BindingBinaryMessageEncodingVersionNotSupportedFormat", @"Unsupported binary message encoding version: '{0}'. It must be '{1}'."); 235internal static string @BindingClientCertRequirementNotSupported => GetResourceString("BindingClientCertRequirementNotSupported", @"Client certificate security requirement is not supported."); 237internal static string @BindingElementTypeNotSupportedFormat => GetResourceString("BindingElementTypeNotSupportedFormat", @"Unsupported binding element type: '{0}'."); 239internal static string @BindingMessageEncodingElementNotSupportedFormat => GetResourceString("BindingMessageEncodingElementNotSupportedFormat", @"Unsupported message encoding element type: '{0}'. It must be one of the following types: '{1}', '{2}.'"); 241internal static string @BindingMessageEncodingNotSupportedFormat => GetResourceString("BindingMessageEncodingNotSupportedFormat", @"Unsupported message encoding value: '{0}'. It must be '{1}'."); 243internal static string @BindingReliableSessionNotSupported => GetResourceString("BindingReliableSessionNotSupported", @"Reliable session is not supported."); 245internal static string @BindingTextMessageEncodingVersionNotSupportedFormat => GetResourceString("BindingTextMessageEncodingVersionNotSupportedFormat", @"Unsupported text message encoding version: '{0}'. It must be '{1}' or '{2}' or '{3}' or '{4}' or '{5}'."); 247internal static string @BindingTransactionFlowNotSupported => GetResourceString("BindingTransactionFlowNotSupported", @"Transaction flow is not supported."); 249internal static string @BindingTransportMessageSecurityVersionNotSupportedFormat => GetResourceString("BindingTransportMessageSecurityVersionNotSupportedFormat", @"Transport message security version value is not supported: '{0}'. It must be one of the following values: {1}."); 251internal static string @BindingTransportSecurityDefaultAlgorithmSuiteNotSupportedFormat => GetResourceString("BindingTransportSecurityDefaultAlgorithmSuiteNotSupportedFormat", @"Transport default security algorithm suite is not supported: '{0}'. It must be '{1}'."); 253internal static string @BindingTransportSecurityElementTypeNotSupportedFormat => GetResourceString("BindingTransportSecurityElementTypeNotSupportedFormat", @"Transport security element type not supported: '{0}'. It must be '{1}'."); 255internal static string @BindingTransportSecurityHeaderLayoutValueNotSupportedFormat => GetResourceString("BindingTransportSecurityHeaderLayoutValueNotSupportedFormat", @"Transport security header layout value is not supported: '{0}'. It must be '{1}'."); 257internal static string @BindingTransportSecurityMustIncludeTimestamp => GetResourceString("BindingTransportSecurityMustIncludeTimestamp", @"Transport security must include timestamp."); 259internal static string @BindingTransportSecurityTokenMustBeOneOfEitherEndorsingOrSignedEncrypted => GetResourceString("BindingTransportSecurityTokenMustBeOneOfEitherEndorsingOrSignedEncrypted", @"Transport security token must have one and only one type of parameters and it must be either 'Endorsing' or 'SignedEncrypted'."); 261internal static string @BindingTransportSecurityTokenParamsRequiringDerivedKeysNotSupported => GetResourceString("BindingTransportSecurityTokenParamsRequiringDerivedKeysNotSupported", @"Security token parameters requiring derived keys is not supported."); 263internal static string @BindingTransportSecurityTokenEndorsingParamsTypeFormat => GetResourceString("BindingTransportSecurityTokenEndorsingParamsTypeFormat", @"Unsupported transport security token endorsing parameters type: '{0}'. It must be '{1}'."); 265internal static string @BindingTransportSecurityTokenParamsInclusionModeValueNotSupportedFormat => GetResourceString("BindingTransportSecurityTokenParamsInclusionModeValueNotSupportedFormat", @"Transport security token parameters inclusion mode value is not supported: '{0}'. It must be '{1}'."); 267internal static string @BindingTransportSecurityTokenParamsReferenceStyleNotSupportedFormat => GetResourceString("BindingTransportSecurityTokenParamsReferenceStyleNotSupportedFormat", @"Transport security token parameters reference style is not supported: '{0}'. It must be '{1}'."); 269internal static string @BindingTransportSecurityTokenParamsTypeNotSupportedFormat => GetResourceString("BindingTransportSecurityTokenParamsTypeNotSupportedFormat", @"Security token parameters type is not supported: '{0}'. It must be '{1}'."); 271internal static string @BindingTransportSecurityTokenSignedOrSignedEndorsingNotSupported => GetResourceString("BindingTransportSecurityTokenSignedOrSignedEndorsingNotSupported", @"Transport security token with signed or signed and endorsing paramaters is not supported."); 273internal static string @BindingTransportTypeNotSupportedFormat => GetResourceString("BindingTransportTypeNotSupportedFormat", @"Unsupported transport type: '{0}'. It must be one of the following types: '{1}', '{2}', '{3}'."); 275internal static string @BindingTypeNotSupportedFormat => GetResourceString("BindingTypeNotSupportedFormat", @"Unsupported binding type: '{0}'. It must be one of the following types: '{1}', '{2}', '{3}', '{4}' or '{5}'."); 277internal static string @ErrUnableToLoadReferenceFormat => GetResourceString("ErrUnableToLoadReferenceFormat", @"Reference cannot be loaded: '{0}', {1}"); 279internal static string @BindingTransportDetectReplaysNotSupported => GetResourceString("BindingTransportDetectReplaysNotSupported", @"Transport Security with DetectReplays enabled is not supported."); 281internal static string @HelpTargetFrameworkFormat => GetResourceString("HelpTargetFrameworkFormat", @"The target framework used for building reference projects. (Short Form: -{0})."); 283internal static string @ReadingMetadataMessageFormat => GetResourceString("ReadingMetadataMessageFormat", @"Attempting to load metadata from '{0}'."); 285internal static string @UsernamePrompt => GetResourceString("UsernamePrompt", @"Enter username (ESC to cancel):"); 287internal static string @PasswordPrompt => GetResourceString("PasswordPrompt", @"Enter password (ESC to cancel):"); 290internal static string @WrnUserBasicCredentialsInClearText => GetResourceString("WrnUserBasicCredentialsInClearText", @"The server needs to authenticate your request. 293internal static string @EnterYesOrNoMessage => GetResourceString("EnterYesOrNoMessage", @"Invalid answer. Please enter 'yes' or 'no':"); 295internal static string @EnterOrEscapeMessage => GetResourceString("EnterOrEscapeMessage", @"Press the ENTER to accept or ESC to cancel:"); 298internal static string @ErrServerCertFailedValidationFormat => GetResourceString("ErrServerCertFailedValidationFormat", @"There were errors when validating the server certificate: {0} 301internal static string @CertificateIndexPrompt => GetResourceString("CertificateIndexPrompt", @"Please enter the index of the certificate to use or ESC to cancel:"); 303internal static string @CertificateSelectionMessageFormat => GetResourceString("CertificateSelectionMessageFormat", @"The site {0} is asking for a client certificate, a list of possible valid certificates will be presented."); 305internal static string @ParametersVerbosity => GetResourceString("ParametersVerbosity", @"<verbosity level>"); 307internal static string @ParametersTargetFramework => GetResourceString("ParametersTargetFramework", @"<framework>"); 309internal static string @ErrMoreThanOneProjectFoundFormat => GetResourceString("ErrMoreThanOneProjectFoundFormat", @"The directory '{0}' contains more than one project file."); 311internal static string @WrnUnexpectedArgumentFormat => GetResourceString("WrnUnexpectedArgumentFormat", @"The specified --{0} option is not expected in the current operational context of the tool!"); 313internal static string @WsdlOrSchemaFilesMsg => GetResourceString("WsdlOrSchemaFilesMsg", @"WSDL files"); 315internal static string @WrnCouldNotGenerateContractOperationsFormat => GetResourceString("WrnCouldNotGenerateContractOperationsFormat", @"Could not generate contract operations using the '{0}' type, attempting with the '{1}' type."); 317internal static string @TelemetryEnabled => GetResourceString("TelemetryEnabled", @"This tool collects information about how it is used in order to improve the tool. This functionality can be disabled by setting the environment variable ""DOTNET_SVCUTIL_TELEMETRY_OPTOUT"" to 1."); 319internal static string @WrnSpecifiedFilePathNotUndeProjectDirFormat => GetResourceString("WrnSpecifiedFilePathNotUndeProjectDirFormat", @"The value specified with the --{0} option resolves to the file path '{1}' which is not under the directory of the project '{2}'. The file may not get compiled!"); 321internal static string @ErrInvalidPathFormat => GetResourceString("ErrInvalidPathFormat", @"Invalid path '{0}'. Check the --{1} option value."); 323internal static string @ErrMoreThanOneUpdateParamsFilesFoundFormat => GetResourceString("ErrMoreThanOneUpdateParamsFilesFoundFormat", @"More than one web service reference was found under the project '{0}'. Please use the --{1} option to specify the service reference to update. The possible values are: {2}."); 325internal static string @ErrNoUpdateParamsFileFoundFormat => GetResourceString("ErrNoUpdateParamsFileFoundFormat", @"The project '{0}' does not have a web service reference that can be updated."); 327internal static string @ErrServiceReferenceNotFoundUnderProjectFormat => GetResourceString("ErrServiceReferenceNotFoundUnderProjectFormat", @"The specified web service reference '{0}' was not found under the project '{1}'."); 329internal static string @ErrProjectToUpdateNotFoundFormat => GetResourceString("ErrProjectToUpdateNotFoundFormat", @"The --{0} option requires a project to be specified, please use the --{1} option to specify the project to use."); 331internal static string @ErrInvalidOperationNoProjectFileFoundUnderFolderFormat => GetResourceString("ErrInvalidOperationNoProjectFileFoundUnderFolderFormat", @"The current operation is invalid outside the context of a project and no project file was found under the '{0}' directory."); 333internal static string @UseProjectFileOptionOnMultipleFilesMsgFormat => GetResourceString("UseProjectFileOptionOnMultipleFilesMsgFormat", @"Please use the --{0} option to specify the project to use, possible values: {1}."); 335internal static string @ErrOutputFileNotUnderOutputDirFormat => GetResourceString("ErrOutputFileNotUnderOutputDirFormat", @"The value of the --{0} option resolves to the path '{1}' which is not under the directory '{2}' resolved from the value specified with the --{3} option. The file must be a relative file name or a full path under this directory."); 337internal static string @ErrOutputFileAlreadyExistsFormat => GetResourceString("ErrOutputFileAlreadyExistsFormat", @"The source file '{0}' resolved from the value specified with the option --{1} already exists!"); 339internal static string @WrnUnexpectedInputsFormat => GetResourceString("WrnUnexpectedInputsFormat", @"The specified input(s) {0} are not expected in the current operational context of the tool!"); 341internal static string @ErrInvalidNamespaceFormat => GetResourceString("ErrInvalidNamespaceFormat", @"The specified namespace mappings {0} contain invalid identifiers."); 343internal static string @HelpUpdateWebServiceReferenceFormat => GetResourceString("HelpUpdateWebServiceReferenceFormat", @"Updates an existing web service reference. If the project contains more than one web service reference, the name of the web service reference to be updated is required. (Short Form: -{0})"); 345internal static string @ParametersWebServiceReferenceName => GetResourceString("ParametersWebServiceReferenceName", @"<web service reference>"); 347internal static string @ParametersRuntimeIdentifier => GetResourceString("ParametersRuntimeIdentifier", @"<runtime identifier>"); 349internal static string @HelpProjectFileFormat => GetResourceString("HelpProjectFileFormat", @"The project file to add the client to (if any). (Short Form: -{0})."); 351internal static string @HelpRuntimeIdentifierFormat => GetResourceString("HelpRuntimeIdentifierFormat", @"The runtime identifier used for building reference projects (if any). (Short Form: -{0})"); 353internal static string @ParametersProjectFile => GetResourceString("ParametersProjectFile", @"<project file>"); 355internal static string @HelpExamples10 => GetResourceString("HelpExamples10", @"dotnet-svcutil -u ServiceReference"); 357internal static string @HelpExamples11 => GetResourceString("HelpExamples11", @"- Update existing web service reference named ServiceReference. The command need to be executed under directory which contains the project file."); 359internal static string @BindingMtomMessageEncodingVersionNotSupportedFormat => GetResourceString("BindingMtomMessageEncodingVersionNotSupportedFormat", @"Unsupported MTOM message encoding version: '{0}'. It must be '{1}' or '{2}' or '{3}' or '{4}'."); 361internal static string @HelpAcceptCertificateFormat => GetResourceString("HelpAcceptCertificateFormat", @"Accept remote certificate as trusted when downloading service metadata. (Short Form: -{0})"); 363internal static string @HelpServiceContractFormat => GetResourceString("HelpServiceContractFormat", @"Generate code for Service Contracts. Client class will not be generated. (Short Form: -{0})"); 365internal static string @WrnTargetFrameworkNotSupported_NetNamedPipe => GetResourceString("WrnTargetFrameworkNotSupported_NetNamedPipe", @"NetNamedPipe is not supported on current .net target framework."); 367internal static string @WrnOutOfSupportTargetFrameworkFormat => GetResourceString("WrnOutOfSupportTargetFrameworkFormat", @"The target framework '{0}' is out of support and will not receive security updates in the future."); 369internal static string @HelpSyncOnlyFormat => GetResourceString("HelpSyncOnlyFormat", @"Generate only synchronous methods for operations. Default: generate task-based asynchronous method signatures. (Short Form: -{0})");