├── .aider.md ├── .clinerules ├── .coderabbit.yaml ├── .cursorrules ├── .editorconfig ├── .gemini └── instructions.md ├── .gitattributes ├── .github ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── dependency-review.yml │ ├── docs.yml │ ├── main.yml │ ├── netframework.yml.off │ ├── rebase.yml │ ├── scorecard.yml │ └── sonarcloud.yml.off ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── AGENTS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DOCS_SETUP.md ├── LICENSE ├── OSLC4Net_NETFramework ├── OSLC4Net.Client.Jazz │ ├── OSLC4Net.Client.Jazz.csproj │ ├── Oslc │ │ └── Jazz │ │ │ ├── JazzConstants.cs │ │ │ ├── JazzFormAuthClient.cs │ │ │ ├── JazzOAuthClient.cs │ │ │ ├── JazzRootServicesConstants.cs │ │ │ └── JazzRootServicesHelper.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── OSLC4Net.Client.Samples │ ├── OSLC4Net.Client.Samples.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RQMFormSample.cs │ ├── RRCFormSample.cs │ ├── RRCOAuthSample.cs │ ├── RTCFormSample.cs │ ├── app.config │ └── log4net.properties ├── OSLC4Net.StockQuoteSample │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ ├── Areas │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs │ │ │ ├── Controllers │ │ │ └── HelpController.cs │ │ │ ├── HelpPage.css │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ ├── ModelDescriptions │ │ │ ├── CollectionModelDescription.cs │ │ │ ├── ComplexTypeModelDescription.cs │ │ │ ├── DictionaryModelDescription.cs │ │ │ ├── EnumTypeModelDescription.cs │ │ │ ├── EnumValueDescription.cs │ │ │ ├── IModelDocumentationProvider.cs │ │ │ ├── KeyValuePairModelDescription.cs │ │ │ ├── ModelDescription.cs │ │ │ ├── ModelDescriptionGenerator.cs │ │ │ ├── ModelNameAttribute.cs │ │ │ ├── ModelNameHelper.cs │ │ │ ├── ParameterAnnotation.cs │ │ │ ├── ParameterDescription.cs │ │ │ └── SimpleTypeModelDescription.cs │ │ │ ├── Models │ │ │ └── HelpPageApiModel.cs │ │ │ ├── SampleGeneration │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ ├── HelpPageSampleKey.cs │ │ │ ├── ImageSample.cs │ │ │ ├── InvalidSample.cs │ │ │ ├── ObjectGenerator.cs │ │ │ ├── SampleDirection.cs │ │ │ └── TextSample.cs │ │ │ ├── Views │ │ │ ├── Help │ │ │ │ ├── Api.cshtml │ │ │ │ ├── DisplayTemplates │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ │ └── TextSample.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── ResourceModel.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ └── XmlDocumentationProvider.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── ServiceProviderController.cs │ │ ├── StockQuoteController.cs │ │ └── ValuesController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ ├── Constants.cs │ │ ├── Exchange.cs │ │ ├── IStockQuotePersistence.cs │ │ ├── StockQuote.cs │ │ ├── StockQuoteMemoryStore.cs │ │ ├── Utilities.cs │ │ └── XmlNamespace.cs │ ├── OSLC4Net.StockQuoteSample.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── Scripts │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── jquery-3.4.1.intellisense.js │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-3.4.1.min.map │ │ ├── jquery-3.4.1.slim.js │ │ ├── jquery-3.4.1.slim.min.js │ │ ├── jquery-3.4.1.slim.min.map │ │ └── modernizr-2.8.3.js │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── favicon.ico └── OSLC4Net_NETFramework.sln ├── OSLC4Net_SDK ├── .config │ └── dotnet-tools.json ├── .dockerignore ├── Directory.Build.props ├── Directory.Packages.props ├── Examples │ ├── Directory.Build.props │ ├── OSLC4NetExamples.Server.NetCoreApi │ │ ├── Controllers │ │ │ ├── CatalogController.cs │ │ │ ├── Resources │ │ │ │ ├── ChangeRequestController.cs │ │ │ │ └── ResourceController.cs │ │ │ ├── RootServicesController.cs │ │ │ └── ServiceProviderController.cs │ │ ├── Dockerfile │ │ ├── Models │ │ │ └── RootServicesDto.cs │ │ ├── OSLC4NetExamples.Server.NetCoreApi.csproj │ │ ├── OSLC4NetExamples.Server.NetCoreApi.http │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── Oslc4NetExamples.Client │ │ ├── Oslc4NetExamples.Client.csproj │ │ └── Program.cs ├── OSLC4Net.ChangeManagement │ ├── ChangeRequest.cs │ ├── Constants.cs │ ├── OSLC4Net.ChangeManagementCommon.csproj │ ├── OSLC4Net.ChangeManagementCommon.csproj.DotSettings │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Severity.cs │ ├── Type.cs │ └── XmlNamespace.cs ├── OSLC4Net.Client │ ├── Exceptions │ │ ├── JazzAuthErrorException.cs │ │ ├── JazzAuthFailedException.cs │ │ ├── OslcClientApplicationException.cs │ │ ├── OslcRdfTypeMismatchException.cs │ │ ├── ResourceNotFoundException.cs │ │ └── RootServicesException.cs │ ├── OSLC4Net.Client.csproj │ ├── Oslc │ │ ├── Helpers │ │ │ └── RootServicesHelper.cs │ │ ├── OSLCConstants.cs │ │ ├── OslcClient.cs │ │ ├── Resources │ │ │ ├── ArchitectureConstants.cs │ │ │ ├── ArchitectureLinkType.cs │ │ │ ├── ArchitectureResource.cs │ │ │ ├── AutomationConstants.cs │ │ │ ├── AutomationPlan.cs │ │ │ ├── AutomationRequest.cs │ │ │ ├── AutomationResult.cs │ │ │ ├── ChangeRequest.cs │ │ │ ├── CmConstants.cs │ │ │ ├── OslcQuery.cs │ │ │ ├── OslcQueryParameters.cs │ │ │ ├── OslcQueryResult.cs │ │ │ ├── ParameterInstance.cs │ │ │ ├── QmConstants.cs │ │ │ ├── QmResource.cs │ │ │ ├── Requirement.cs │ │ │ ├── RequirementCollection.cs │ │ │ ├── RmConstants.cs │ │ │ ├── RmUtil.cs │ │ │ ├── TestCase.cs │ │ │ ├── TestExecutionRecord.cs │ │ │ ├── TestPlan.cs │ │ │ ├── TestResult.cs │ │ │ └── TestScript.cs │ │ ├── RootServicesDocument.cs │ │ └── RootServicesOAuth10aDocument.cs │ ├── OslcResponse.cs │ ├── OslcRestClient.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceProviderRegistryClient.cs │ ├── ServiceProviderRegistryURIs.cs │ └── app.config ├── OSLC4Net.Core.DotNetRdfProvider │ ├── DotNetRdfHelper.cs │ ├── Extensions.cs │ ├── OSLC4Net.Core.DotNetRdfProvider.csproj │ ├── RdfXmlMediaTypeFormatter.cs │ └── app.config ├── OSLC4Net.Core.Query │ ├── BooleanValue.cs │ ├── ComparisonTerm.cs │ ├── CompoundTerm.cs │ ├── DecimalValue.cs │ ├── Grammars │ │ ├── OslcOrderBy.g │ │ ├── OslcPrefix.g │ │ ├── OslcSearchTerms.g │ │ ├── OslcSelect.g │ │ └── OslcWhere.g │ ├── Impl │ │ ├── BooleanValueImpl.cs │ │ ├── ComparisonTermImpl.cs │ │ ├── CompoundTermImpl.cs │ │ ├── DecimalValueImpl.cs │ │ ├── GeneratingParsers.txt │ │ ├── InTermImpl.cs │ │ ├── LangedStringValueImpl.cs │ │ ├── NestedPropertyImpl.cs │ │ ├── OslcOrderBy.tokens │ │ ├── OslcOrderByLexer.cs │ │ ├── OslcOrderByParser.cs │ │ ├── OslcPrefix.tokens │ │ ├── OslcPrefixLexer.cs │ │ ├── OslcPrefixParser.cs │ │ ├── OslcSearchTerms.tokens │ │ ├── OslcSearchTermsLexer.cs │ │ ├── OslcSearchTermsParser.cs │ │ ├── OslcSelect.tokens │ │ ├── OslcSelectLexer.cs │ │ ├── OslcSelectParser.cs │ │ ├── OslcWhere.tokens │ │ ├── OslcWhereLexer.cs │ │ ├── OslcWhereParser.cs │ │ ├── PropertiesClauseImpl.cs │ │ ├── PropertiesImpl.cs │ │ ├── PropertyImpl.cs │ │ ├── ScopedSortTermImpl.cs │ │ ├── SelectClauseImpl.cs │ │ ├── SimpleSortTermImpl.cs │ │ ├── SimpleTermImpl.cs │ │ ├── SortTermImpl.cs │ │ ├── SortTermsImpl.cs │ │ ├── StringValueImpl.cs │ │ ├── TypedValueImpl.cs │ │ ├── UriRefValueImpl.cs │ │ ├── ValueImpl.cs │ │ ├── WhereClauseImpl.cs │ │ └── WildcardImpl.cs │ ├── InvalidOperationException.cs │ ├── LangedStringValue.cs │ ├── NestedProperty.cs │ ├── OSLC4Net.Core.Query.csproj │ ├── OrderByClause.cs │ ├── PName.cs │ ├── ParseException.cs │ ├── Properties.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertiesClause.cs │ ├── Property.cs │ ├── QueryUtils.cs │ ├── ScopedSortTerm.cs │ ├── SearchTermsClause.cs │ ├── SelectClause.cs │ ├── SimpleSortTerm.cs │ ├── SimpleTerm.cs │ ├── SortTerm.cs │ ├── SortTerms.cs │ ├── StringValue.cs │ ├── TypedValue.cs │ ├── UriRefValue.cs │ ├── Value.cs │ ├── WhereClause.cs │ └── Wildcard.cs ├── OSLC4Net.Core.slnx ├── OSLC4Net.Core │ ├── Attribute │ │ ├── OslcAllowedValue.cs │ │ ├── OslcAllowedValues.cs │ │ ├── OslcCreationFactory.cs │ │ ├── OslcDefaultValue.cs │ │ ├── OslcDescription.cs │ │ ├── OslcDialog.cs │ │ ├── OslcDialogs.cs │ │ ├── OslcHidden.cs │ │ ├── OslcMaxSize.cs │ │ ├── OslcMemberProperty.cs │ │ ├── OslcName.cs │ │ ├── OslcNamespace.cs │ │ ├── OslcNamespaceDefinition.cs │ │ ├── OslcOccurs.cs │ │ ├── OslcPropertyDefinition.cs │ │ ├── OslcQueryCapability.cs │ │ ├── OslcRange.cs │ │ ├── OslcRdfCollectionType.cs │ │ ├── OslcReadOnly.cs │ │ ├── OslcRepresentation.cs │ │ ├── OslcResourceShape.cs │ │ ├── OslcSchema.cs │ │ ├── OslcService.cs │ │ ├── OslcTitle.cs │ │ ├── OslcValueShape.cs │ │ └── OslcValueType.cs │ ├── Exceptions │ │ ├── OslcCoreApplicationException.cs │ │ ├── OslcCoreDeregistrationException.cs │ │ ├── OslcCoreDuplicatePropertyDefinitionException.cs │ │ ├── OslcCoreInvalidAttributeException.cs │ │ ├── OslcCoreInvalidOccursException.cs │ │ ├── OslcCoreInvalidPropertyDefinitionException.cs │ │ ├── OslcCoreInvalidPropertyTypeException.cs │ │ ├── OslcCoreInvalidRepresentationException.cs │ │ ├── OslcCoreInvalidValueTypeException.cs │ │ ├── OslcCoreMissingAttributeException.cs │ │ ├── OslcCoreMissingNamespaceDeclarationException.cs │ │ ├── OslcCoreMissingNamespacePrefixException.cs │ │ ├── OslcCoreMissingSetMethodException.cs │ │ ├── OslcCoreMisusedOccursException.cs │ │ ├── OslcCoreRegistrationException.cs │ │ ├── OslcCoreRelativeURIException.cs │ │ └── OslcCoreRequestException.cs │ ├── Model │ │ ├── AbstractReifiedResource.cs │ │ ├── AbstractResource.cs │ │ ├── AllowedValues.cs │ │ ├── AnyResource.cs │ │ ├── Compact.cs │ │ ├── CreationFactory.cs │ │ ├── Dialog.cs │ │ ├── EnumerableWrapper.cs │ │ ├── Error.cs │ │ ├── ExtendedError.cs │ │ ├── FilteredResource.cs │ │ ├── IExtendedResource.cs │ │ ├── IReifiedResource.cs │ │ ├── IResource.cs │ │ ├── InheritedGenericInterfacesHelper.cs │ │ ├── InheritedMethodAttributeHelper.cs │ │ ├── Link.cs │ │ ├── OAuthConfiguration.cs │ │ ├── Occurs.cs │ │ ├── OslcConstants.DC.cs │ │ ├── OslcConstants.FOAF.cs │ │ ├── OslcConstants.LDP.cs │ │ ├── OslcConstants.PROV.cs │ │ ├── OslcConstants.QUDT.cs │ │ ├── OslcConstants.RDF.cs │ │ ├── OslcConstants.SKOS.cs │ │ ├── OslcConstants.cs │ │ ├── OslcMediaType.cs │ │ ├── PrefixDefinition.cs │ │ ├── Preview.cs │ │ ├── Property.cs │ │ ├── Publisher.cs │ │ ├── QName.cs │ │ ├── QueryCapability.cs │ │ ├── Representation.cs │ │ ├── ResourceShape.cs │ │ ├── ResourceShapeFactory.cs │ │ ├── ResponseInfo.cs │ │ ├── ResponseInfoArray.cs │ │ ├── ResponseInfoCollection.cs │ │ ├── Service.cs │ │ ├── ServiceProvider.cs │ │ ├── ServiceProviderCatalog.cs │ │ ├── ServiceProviderFactory.cs │ │ ├── SortedUriSet.cs │ │ ├── TypeFactory.cs │ │ ├── URI.cs │ │ ├── ValueType.cs │ │ └── XmlNamespace.cs │ ├── NestedWildcardProperties.cs │ ├── OSLC4Net.Core.csproj │ ├── OSLC4NetConstants.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SingletonWildcardProperties.cs ├── OSLC4Net.Domains.RequirementsManagement │ ├── Constants.cs │ ├── OSLC4Net.Domains.RequirementsManagement.csproj │ ├── Requirement.cs │ └── RequirementCollection.cs ├── OSLC4Net.Server.Providers │ ├── OSLC4Net.Server.Providers.csproj │ ├── OslcOutputFormatConfig.cs │ ├── OslcRdfInputFormatter.cs │ ├── OslcRdfOutputFormatter.cs │ ├── RdfFormat.cs │ └── SerializationContext.cs ├── Tests │ ├── Directory.Build.props │ ├── OSLC4Net.Client.Tests │ │ ├── FakeHttpMessageHandler.cs │ │ ├── OSLC4Net.Client.Tests.csproj │ │ ├── OslcQueryResultTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RootServicesHelperTests.cs │ │ └── data │ │ │ └── multiResponseQuery.rdf │ ├── OSLC4Net.Core.DotNetRdfProviderTests │ │ ├── OSLC4Net.Core.DotNetRdfProviderTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RdfXmlMediaTypeFormatterTests.cs │ │ ├── Snapshots │ │ │ ├── RdfXmlMediaTypeFormatterTests.TestRdfXmlCollectionSerializationAsync.verified.ttl │ │ │ └── RdfXmlMediaTypeFormatterTests.TestRdfXmlSerializationAsync.verified.ttl │ │ ├── VerifyInit.cs │ │ └── app.config │ ├── OSLC4Net.Core.QueryTests │ │ ├── OSLC4Net.Core.QueryTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QueryBasicTest.cs │ │ └── data │ │ │ └── OSLC4Net.Core.QueryTests.csproj │ ├── OSLC4Net.Core.Tests │ │ ├── OSLC4Net.Core.Tests.csproj │ │ └── ResourceShapeFactoryTests.cs │ ├── OSLC4Net.Test.AspireHost │ │ ├── OSLC4Net.Test.AspireHost.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── OSLC4Net.Test.RefImpl │ │ ├── DummyTest.cs │ │ ├── OSLC4Net.Test.RefImpl.csproj │ │ ├── RefimplAspireFixture.cs │ │ ├── RootServicesHelperTests.cs │ │ ├── TestBase.cs │ │ ├── TestChangeManagementRdfXml.cs │ │ ├── TestChangeManagementTurtle.cs │ │ ├── TestChangeManagementXml.cs │ │ ├── TestRequirementsManagementTurtle.cs │ │ └── appsettings.Development.json │ ├── OSLC4NetExamples.Server.Tests.AspireHost │ │ ├── OSLC4NetExamples.Server.Tests.AspireHost.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── OSLC4NetExamples.Server.Tests │ │ ├── AspireAppCollection.cs │ │ ├── Models │ │ └── RootServicesDtoTests.cs │ │ ├── OSLC4NetExamples.Server.Tests.csproj │ │ ├── RefimplAspireFixture.cs │ │ ├── TestData │ │ ├── rootservices.rdf │ │ └── rootservices2.rdf │ │ └── TestOslcNetCoreApi.cs ├── global.json └── scripts │ ├── .gitignore │ ├── oslc_shapes_gen.py │ └── vocab_gen.py ├── README.md ├── doc ├── building.md ├── logo.png ├── logo.svg ├── logo_a.png └── stockquote.png ├── docs ├── .gitignore ├── .nojekyll ├── DEPLOYMENT.md ├── README.md ├── docfx.json ├── guides │ ├── delegated-ui-resource-preview.md │ ├── extended-properties-namespaces.md │ ├── minimal-oslc-client.md │ ├── oslc4net-architecture-overview.md │ ├── output-formatters-media-types.md │ └── toc.yml ├── images │ ├── favicon-16.png │ ├── favicon-32.png │ ├── favicon-64.png │ ├── favicon.ico │ ├── logo.png │ ├── logo.svg │ └── logo_docfx.png ├── index.md ├── template │ └── public │ │ └── main.js └── toc.yml ├── misc └── instructions │ ├── gov-uk-technical-content.md │ ├── iso-house-guide.md │ └── legacy-code-testing.md └── scripts └── issues-to-json.sh /.aider.md: -------------------------------------------------------------------------------- 1 | ../AGENTS.md -------------------------------------------------------------------------------- /.clinerules: -------------------------------------------------------------------------------- 1 | ../AGENTS.md -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- 1 | ../AGENTS.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gemini/instructions.md: -------------------------------------------------------------------------------- 1 | ../../AGENTS.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- 1 | ../../AGENTS.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/netframework.yml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/netframework.yml.off -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/sonarcloud.yml.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.github/workflows/sonarcloud.yml.off -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCS_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/DOCS_SETUP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/LICENSE -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/OSLC4Net.Client.Jazz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/OSLC4Net.Client.Jazz.csproj -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzFormAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzFormAuthClient.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzOAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzOAuthClient.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzRootServicesConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzRootServicesConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzRootServicesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Oslc/Jazz/JazzRootServicesHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Jazz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/OSLC4Net.Client.Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/OSLC4Net.Client.Samples.csproj -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RQMFormSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RQMFormSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RRCFormSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RRCFormSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RRCOAuthSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RRCOAuthSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RTCFormSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/RTCFormSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/app.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.Client.Samples/log4net.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.Client.Samples/log4net.properties -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/Site.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Content/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/ServiceProviderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/ServiceProviderController.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/StockQuoteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/StockQuoteController.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Global.asax -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Global.asax.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Constants.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Exchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Exchange.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/IStockQuotePersistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/IStockQuotePersistence.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/StockQuote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/StockQuote.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/StockQuoteMemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/StockQuoteMemoryStore.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/Utilities.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/XmlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Models/XmlNamespace.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/OSLC4Net.StockQuoteSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/OSLC4Net.StockQuoteSample.csproj -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/README.md -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.min.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/bootstrap.min.js.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.intellisense.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/jquery-3.4.1.slim.min.map -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/Web.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.Debug.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.Release.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/Web.config -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net.StockQuoteSample/favicon.ico -------------------------------------------------------------------------------- /OSLC4Net_NETFramework/OSLC4Net_NETFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_NETFramework/OSLC4Net_NETFramework.sln -------------------------------------------------------------------------------- /OSLC4Net_SDK/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/.config/dotnet-tools.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/.dockerignore -------------------------------------------------------------------------------- /OSLC4Net_SDK/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Directory.Build.props -------------------------------------------------------------------------------- /OSLC4Net_SDK/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Directory.Packages.props -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/Directory.Build.props -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/Resources/ChangeRequestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/Resources/ChangeRequestController.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/Resources/ResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/Resources/ResourceController.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/RootServicesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/RootServicesController.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/ServiceProviderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Controllers/ServiceProviderController.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Dockerfile -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Models/RootServicesDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Models/RootServicesDto.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/OSLC4NetExamples.Server.NetCoreApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/OSLC4NetExamples.Server.NetCoreApi.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/OSLC4NetExamples.Server.NetCoreApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/OSLC4NetExamples.Server.NetCoreApi.http -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Program.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/appsettings.Development.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/OSLC4NetExamples.Server.NetCoreApi/appsettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/Oslc4NetExamples.Client/Oslc4NetExamples.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/Oslc4NetExamples.Client/Oslc4NetExamples.Client.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Examples/Oslc4NetExamples.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Examples/Oslc4NetExamples.Client/Program.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/ChangeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/ChangeRequest.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/Constants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/OSLC4Net.ChangeManagementCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/OSLC4Net.ChangeManagementCommon.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/OSLC4Net.ChangeManagementCommon.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/OSLC4Net.ChangeManagementCommon.csproj.DotSettings -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/Severity.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/Type.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.ChangeManagement/XmlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.ChangeManagement/XmlNamespace.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/JazzAuthErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/JazzAuthErrorException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/JazzAuthFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/JazzAuthFailedException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/OslcClientApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/OslcClientApplicationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/OslcRdfTypeMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/OslcRdfTypeMismatchException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/ResourceNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/ResourceNotFoundException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Exceptions/RootServicesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Exceptions/RootServicesException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/OSLC4Net.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/OSLC4Net.Client.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Helpers/RootServicesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Helpers/RootServicesHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/OSLCConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/OSLCConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/OslcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/OslcClient.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureLinkType.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ArchitectureResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationPlan.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationRequest.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/AutomationResult.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ChangeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ChangeRequest.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/CmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/CmConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQuery.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQueryParameters.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/OslcQueryResult.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ParameterInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/ParameterInstance.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/QmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/QmConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/QmResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/QmResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/Requirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/Requirement.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RequirementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RequirementCollection.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RmConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RmUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/RmUtil.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestCase.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestExecutionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestExecutionRecord.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestPlan.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestResult.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/Resources/TestScript.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/RootServicesDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/RootServicesDocument.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Oslc/RootServicesOAuth10aDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Oslc/RootServicesOAuth10aDocument.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/OslcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/OslcResponse.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/OslcRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/OslcRestClient.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/ServiceProviderRegistryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/ServiceProviderRegistryClient.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/ServiceProviderRegistryURIs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/ServiceProviderRegistryURIs.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Client/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Client/app.config -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/DotNetRdfHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/DotNetRdfHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/Extensions.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/OSLC4Net.Core.DotNetRdfProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/OSLC4Net.Core.DotNetRdfProvider.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/RdfXmlMediaTypeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/RdfXmlMediaTypeFormatter.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.DotNetRdfProvider/app.config -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/BooleanValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/BooleanValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/ComparisonTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/ComparisonTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/CompoundTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/CompoundTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/DecimalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/DecimalValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcOrderBy.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcOrderBy.g -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcPrefix.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcPrefix.g -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcSearchTerms.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcSearchTerms.g -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcSelect.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcSelect.g -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcWhere.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Grammars/OslcWhere.g -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/BooleanValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/BooleanValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ComparisonTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ComparisonTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/CompoundTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/CompoundTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/DecimalValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/DecimalValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/GeneratingParsers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/GeneratingParsers.txt -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/InTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/InTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/LangedStringValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/LangedStringValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/NestedPropertyImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/NestedPropertyImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderBy.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderBy.tokens -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderByLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderByLexer.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderByParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcOrderByParser.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefix.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefix.tokens -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefixLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefixLexer.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefixParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcPrefixParser.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTerms.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTerms.tokens -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTermsLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTermsLexer.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTermsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSearchTermsParser.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelect.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelect.tokens -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelectLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelectLexer.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelectParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcSelectParser.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhere.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhere.tokens -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhereLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhereLexer.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhereParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/OslcWhereParser.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertiesClauseImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertiesClauseImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertiesImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertiesImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertyImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/PropertyImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ScopedSortTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ScopedSortTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SelectClauseImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SelectClauseImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SimpleSortTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SimpleSortTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SimpleTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SimpleTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SortTermImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SortTermImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SortTermsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/SortTermsImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/StringValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/StringValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/TypedValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/TypedValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/UriRefValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/UriRefValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ValueImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/ValueImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/WhereClauseImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/WhereClauseImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/WildcardImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Impl/WildcardImpl.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/InvalidOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/InvalidOperationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/LangedStringValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/LangedStringValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/NestedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/NestedProperty.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/OSLC4Net.Core.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/OSLC4Net.Core.Query.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/OrderByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/OrderByClause.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/PName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/PName.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/ParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/ParseException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Properties.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/PropertiesClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/PropertiesClause.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Property.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/QueryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/QueryUtils.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/ScopedSortTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/ScopedSortTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SearchTermsClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SearchTermsClause.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SelectClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SelectClause.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SimpleSortTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SimpleSortTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SimpleTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SimpleTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SortTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SortTerm.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/SortTerms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/SortTerms.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/StringValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/StringValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/TypedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/TypedValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/UriRefValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/UriRefValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Value.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/WhereClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/WhereClause.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.Query/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.Query/Wildcard.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core.slnx -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcAllowedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcAllowedValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcAllowedValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcAllowedValues.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcCreationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcCreationFactory.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDefaultValue.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDescription.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDialog.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcDialogs.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcHidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcHidden.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcMaxSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcMaxSize.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcMemberProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcMemberProperty.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcName.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcNamespace.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcNamespaceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcNamespaceDefinition.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcOccurs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcOccurs.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcPropertyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcPropertyDefinition.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcQueryCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcQueryCapability.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRange.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRdfCollectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRdfCollectionType.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcReadOnly.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcRepresentation.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcResourceShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcResourceShape.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcSchema.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcService.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcTitle.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcValueShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcValueShape.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Attribute/OslcValueType.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreApplicationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreDeregistrationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreDeregistrationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreDuplicatePropertyDefinitionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreDuplicatePropertyDefinitionException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidAttributeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidAttributeException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidOccursException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidOccursException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidPropertyDefinitionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidPropertyDefinitionException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidPropertyTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidPropertyTypeException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidRepresentationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidRepresentationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidValueTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreInvalidValueTypeException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingAttributeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingAttributeException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingNamespaceDeclarationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingNamespaceDeclarationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingNamespacePrefixException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingNamespacePrefixException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingSetMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMissingSetMethodException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMisusedOccursException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreMisusedOccursException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRegistrationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRegistrationException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRelativeURIException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRelativeURIException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Exceptions/OslcCoreRequestException.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/AbstractReifiedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/AbstractReifiedResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/AbstractResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/AbstractResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/AllowedValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/AllowedValues.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/AnyResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/AnyResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Compact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Compact.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/CreationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/CreationFactory.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Dialog.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/EnumerableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/EnumerableWrapper.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Error.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ExtendedError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ExtendedError.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/FilteredResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/FilteredResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/IExtendedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/IExtendedResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/IReifiedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/IReifiedResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/IResource.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/InheritedGenericInterfacesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/InheritedGenericInterfacesHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/InheritedMethodAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/InheritedMethodAttributeHelper.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Link.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OAuthConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OAuthConfiguration.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Occurs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Occurs.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.DC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.DC.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.FOAF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.FOAF.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.LDP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.LDP.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.PROV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.PROV.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.QUDT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.QUDT.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.RDF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.RDF.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.SKOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.SKOS.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/OslcMediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/OslcMediaType.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/PrefixDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/PrefixDefinition.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Preview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Preview.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Property.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Publisher.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/QName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/QName.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/QueryCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/QueryCapability.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Representation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Representation.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ResourceShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ResourceShape.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ResourceShapeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ResourceShapeFactory.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfoArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfoArray.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ResponseInfoCollection.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/Service.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProvider.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProviderCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProviderCatalog.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ServiceProviderFactory.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/SortedUriSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/SortedUriSet.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/TypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/TypeFactory.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/URI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/URI.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/ValueType.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Model/XmlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Model/XmlNamespace.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/NestedWildcardProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/NestedWildcardProperties.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/OSLC4Net.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/OSLC4Net.Core.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/OSLC4NetConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/OSLC4NetConstants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Core/SingletonWildcardProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Core/SingletonWildcardProperties.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/Constants.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/OSLC4Net.Domains.RequirementsManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/OSLC4Net.Domains.RequirementsManagement.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/Requirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/Requirement.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/RequirementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Domains.RequirementsManagement/RequirementCollection.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/OSLC4Net.Server.Providers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/OSLC4Net.Server.Providers.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcOutputFormatConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcOutputFormatConfig.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcRdfInputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcRdfInputFormatter.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcRdfOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/OslcRdfOutputFormatter.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/RdfFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/RdfFormat.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/OSLC4Net.Server.Providers/SerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/OSLC4Net.Server.Providers/SerializationContext.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/Directory.Build.props -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/FakeHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/FakeHttpMessageHandler.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/OSLC4Net.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/OSLC4Net.Client.Tests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/OslcQueryResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/OslcQueryResultTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/RootServicesHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/RootServicesHelperTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/data/multiResponseQuery.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Client.Tests/data/multiResponseQuery.rdf -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/OSLC4Net.Core.DotNetRdfProviderTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/OSLC4Net.Core.DotNetRdfProviderTests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/RdfXmlMediaTypeFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/RdfXmlMediaTypeFormatterTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Snapshots/RdfXmlMediaTypeFormatterTests.TestRdfXmlCollectionSerializationAsync.verified.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Snapshots/RdfXmlMediaTypeFormatterTests.TestRdfXmlCollectionSerializationAsync.verified.ttl -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Snapshots/RdfXmlMediaTypeFormatterTests.TestRdfXmlSerializationAsync.verified.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/Snapshots/RdfXmlMediaTypeFormatterTests.TestRdfXmlSerializationAsync.verified.ttl -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/VerifyInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/VerifyInit.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.DotNetRdfProviderTests/app.config -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/OSLC4Net.Core.QueryTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/OSLC4Net.Core.QueryTests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/QueryBasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/QueryBasicTest.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/data/OSLC4Net.Core.QueryTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.QueryTests/data/OSLC4Net.Core.QueryTests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.Tests/OSLC4Net.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.Tests/OSLC4Net.Core.Tests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Core.Tests/ResourceShapeFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Core.Tests/ResourceShapeFactoryTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/OSLC4Net.Test.AspireHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/OSLC4Net.Test.AspireHost.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/Program.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/appsettings.Development.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.AspireHost/appsettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/DummyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/DummyTest.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/OSLC4Net.Test.RefImpl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/OSLC4Net.Test.RefImpl.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/RefimplAspireFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/RefimplAspireFixture.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/RootServicesHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/RootServicesHelperTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestBase.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementRdfXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementRdfXml.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementTurtle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementTurtle.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestChangeManagementXml.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestRequirementsManagementTurtle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/TestRequirementsManagementTurtle.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4Net.Test.RefImpl/appsettings.Development.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/OSLC4NetExamples.Server.Tests.AspireHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/OSLC4NetExamples.Server.Tests.AspireHost.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/Program.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/appsettings.Development.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests.AspireHost/appsettings.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/AspireAppCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/AspireAppCollection.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/Models/RootServicesDtoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/Models/RootServicesDtoTests.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/OSLC4NetExamples.Server.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/OSLC4NetExamples.Server.Tests.csproj -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/RefimplAspireFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/RefimplAspireFixture.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestData/rootservices.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestData/rootservices.rdf -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestData/rootservices2.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestData/rootservices2.rdf -------------------------------------------------------------------------------- /OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestOslcNetCoreApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/Tests/OSLC4NetExamples.Server.Tests/TestOslcNetCoreApi.cs -------------------------------------------------------------------------------- /OSLC4Net_SDK/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/global.json -------------------------------------------------------------------------------- /OSLC4Net_SDK/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | generated_csharp/ 2 | -------------------------------------------------------------------------------- /OSLC4Net_SDK/scripts/oslc_shapes_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/scripts/oslc_shapes_gen.py -------------------------------------------------------------------------------- /OSLC4Net_SDK/scripts/vocab_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/OSLC4Net_SDK/scripts/vocab_gen.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/README.md -------------------------------------------------------------------------------- /doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/doc/building.md -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/doc/logo.svg -------------------------------------------------------------------------------- /doc/logo_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/doc/logo_a.png -------------------------------------------------------------------------------- /doc/stockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/doc/stockquote.png -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/DEPLOYMENT.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/guides/delegated-ui-resource-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/delegated-ui-resource-preview.md -------------------------------------------------------------------------------- /docs/guides/extended-properties-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/extended-properties-namespaces.md -------------------------------------------------------------------------------- /docs/guides/minimal-oslc-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/minimal-oslc-client.md -------------------------------------------------------------------------------- /docs/guides/oslc4net-architecture-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/oslc4net-architecture-overview.md -------------------------------------------------------------------------------- /docs/guides/output-formatters-media-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/output-formatters-media-types.md -------------------------------------------------------------------------------- /docs/guides/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/guides/toc.yml -------------------------------------------------------------------------------- /docs/images/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/favicon-16.png -------------------------------------------------------------------------------- /docs/images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/favicon-32.png -------------------------------------------------------------------------------- /docs/images/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/favicon-64.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/logo_docfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/images/logo_docfx.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/template/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/template/public/main.js -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /misc/instructions/gov-uk-technical-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/misc/instructions/gov-uk-technical-content.md -------------------------------------------------------------------------------- /misc/instructions/iso-house-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/misc/instructions/iso-house-guide.md -------------------------------------------------------------------------------- /misc/instructions/legacy-code-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/misc/instructions/legacy-code-testing.md -------------------------------------------------------------------------------- /scripts/issues-to-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSLC/oslc4net/HEAD/scripts/issues-to-json.sh --------------------------------------------------------------------------------