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