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.
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.tarNavigate 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.tgzAlternatively, you get the JavaScript file directly from the master branch on GitHub.
Follow these instructions to install the downloaded .nupkg file.
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>