gitextract_tza6k42w/ ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── notes/ │ ├── samples/ │ │ ├── petstore-expanded.json │ │ ├── petstore-minimal.json │ │ ├── petstore-simple.json │ │ ├── petstore-with-external-docs.json │ │ └── petstore.json │ ├── schema.json │ └── spec-2.0.md └── src/ ├── SwaggerWcf/ │ ├── Attributes/ │ │ ├── SwaggerWcfAttribute.cs │ │ ├── SwaggerWcfContactInfoAttribute.cs │ │ ├── SwaggerWcfContentTypesAttribute.cs │ │ ├── SwaggerWcfDefinitionAttribute.cs │ │ ├── SwaggerWcfHeaderAttribute.cs │ │ ├── SwaggerWcfHiddenAttribute.cs │ │ ├── SwaggerWcfLicenseInfoAttribute.cs │ │ ├── SwaggerWcfParameterAttribute.cs │ │ ├── SwaggerWcfPathAttribute.cs │ │ ├── SwaggerWcfPropertyAttribute.cs │ │ ├── SwaggerWcfRegexAttribute.cs │ │ ├── SwaggerWcfRequestTypeAttribute.cs │ │ ├── SwaggerWcfResponseAttribute.cs │ │ ├── SwaggerWcfReturnTypeAttribute.cs │ │ ├── SwaggerWcfSecurityAttribute.cs │ │ ├── SwaggerWcfServiceInfoAttribute.cs │ │ └── SwaggerWcfTagAttribute.cs │ ├── Configuration/ │ │ ├── SettingCollection.cs │ │ ├── SettingElement.cs │ │ ├── SwaggerWcfSection.cs │ │ ├── TagCollection.cs │ │ └── TagElement.cs │ ├── ISwaggerWcfEndpoint.cs │ ├── Models/ │ │ ├── CollectionFormat.cs │ │ ├── Definition.cs │ │ ├── DefinitionProperty.cs │ │ ├── DefinitionSchema.cs │ │ ├── Example.cs │ │ ├── ExternalDocumentation.cs │ │ ├── InType.cs │ │ ├── Info.cs │ │ ├── InfoContact.cs │ │ ├── InfoLicense.cs │ │ ├── ParameterBase.cs │ │ ├── ParameterItems.cs │ │ ├── ParameterPrimitive.cs │ │ ├── ParameterSchema.cs │ │ ├── ParameterType.cs │ │ ├── Path.cs │ │ ├── PathAction.cs │ │ ├── Property.cs │ │ ├── Response.cs │ │ ├── Schema.cs │ │ ├── SecurityAuthorization.cs │ │ ├── SecurityDefinitions.cs │ │ ├── Service.cs │ │ └── TypeFormat.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Support/ │ │ ├── DefinitionsBuilder.cs │ │ ├── EnumerableExtensions.cs │ │ ├── Helpers.cs │ │ ├── ListExtensions.cs │ │ ├── Mapper.cs │ │ ├── MethodInfoExtensions.cs │ │ ├── Serializer.cs │ │ ├── ServiceBuilder.cs │ │ ├── StaticContent.cs │ │ ├── TypeBuilder.cs │ │ ├── TypeExtensions.cs │ │ ├── TypeFieldsProcessor.cs │ │ └── TypePropertiesProcessor.cs │ ├── SwaggerWcf.csproj │ ├── SwaggerWcf.csproj.DotSettings │ ├── SwaggerWcf.nuspec │ ├── SwaggerWcfEndpoint.cs │ ├── SwaggerWcfEndpointGeneric.cs │ └── packages.config ├── SwaggerWcf.Test.Service/ │ ├── AuthorService.cs │ ├── BaseService.cs │ ├── Data/ │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── Language.cs │ │ └── Store.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── IAuthorService.cs │ ├── IBaseCRUDService.cs │ ├── IBaseService.cs │ ├── IStore.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Store.svc │ ├── Store.svc.cs │ ├── SwaggerWcf.Test.Service.csproj │ ├── SwaggerWcf.Test.Service.csproj.DotSettings │ ├── Web.Debug.config │ ├── Web.Release.config │ └── Web.config ├── SwaggerWcf.sln ├── SwaggerWcf.sln.DotSettings └── packages/ ├── .gitignore └── repositories.config