Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.65 KB

File metadata and controls

41 lines (28 loc) · 1.65 KB

Using CI Builds

Master branch build artifacts are stored here. Download the devextreme-aspnet-data-99.0.0-ci-NNN.tgz and DevExtreme.AspNet.Data.99.0.0-ci-NNN.nupkg files and follow the instructions below.

Client-Side Script

Unpack the .tgz archive to a temporary location. On Windows, you can use 7zip for that:

7zip x devextreme-aspnet-data-99.0.0-ci-NNN.tgz
7zip x devextreme-aspnet-data-99.0.0-ci-NNN.tar

Navigate to the package/js folder in the temporary location and copy the extracted JavaScript file to your project.

For Node projects, you can install the archive as a package:

npm i /temp/path/devextreme-aspnet-data-99.0.0-ci-NNN.tgz

Alternatively, you get the JavaScript file directly from the master branch on GitHub.

NuGet Package

Install the .nupkg package using the instructions from How to install a Nuget Package .nupkg file locally.

Add an Assembly Binding Redirect

For .NET framework projects, add a binding redirect to the web.config or app.config file:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <!-- add this -->
      <dependentAssembly>
        <assemblyIdentity name="DevExtreme.AspNet.Data" publicKeyToken="982f5dab1439d0f7"/>
        <bindingRedirect oldVersion="0.0.0.0-99.0.0.0" newVersion="99.0.0.0"/>
      </dependentAssembly>