Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Latest commit

 

History

History
43 lines (25 loc) · 1.61 KB

README.md

File metadata and controls

43 lines (25 loc) · 1.61 KB

Invio.QueryProvider

Build Status

The Invio.QueryProvider project is a combination of Invio.QueryProvider.Core and engine specific implementations maintained by Invio. This simplifies the process of developing, building, and packaging these projects in unison.

Packages

NuGet

NuGet

Cloning

This repository uses git submodules so after cloning this repository it is necessary to pull the submodule repositories as well by running:

git submodule update --init

Building

For Development

To build all the projects simultaneously, it is necessary to enable local project references (instead of package references). To do so create a local file called User.props with the following content:

<Project>
  <PropertyGroup>
    <UseProjectReferences>true</UseProjectReferences>
  </PropertyGroup>
</Project>

For Deployment

For deployment purposes packages must be built and packaged one at a time. This can be done quickly using the build.ps1 powershell script.