Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 2.81 KB

README.md

File metadata and controls

51 lines (38 loc) · 2.81 KB

OData Web API

This branch of the OData Web API will be maintained to keep the basic vNext sample working with the latest version of ASP.NET Core

Please do not use this branch if you wish to use a non ASP.NET Core version, see the master branch for that.

Introduction

OData Web API (i.e., ASP.NET Web API OData) is a server library built upon ODataLib and Web API.

Project structure

The project has a few branches, such as master, vNext, gh-pages.

master

The master branch has the following libraries, and the packages are available from NuGet or MyGet:

vNext

The vNext branch contains the latest code of OData vNext Web API.

gh-pages

The gh-pages branch contains the documenation source - in Markdown format - of the OData Web API.

Building

cd OData
build

Testing

Each solution contains some test projects. Test projects use xUnit runner nuget package. Open the project, build it, and then test cases should appear in test explorer. Run all the tests in the test explorer. For running end-to-end tests you must open the solution as Administrator. More detail at this.

Nightly builds

  1. In your NuGet Package Manager settings add the following package source:
  1. Package IDs

Contribution

Please refer to the CONTRIBUTION.md.

Documentation

Please visit the OData Web API pages.

Samples

Please refer to the ODataSamples WebApi.

Debug

Please refer to the How to debug.