You can download automated build artifacts here. Please note that you need to be signed in to GitHub.
- Click the most recent successful workflow run result.
- At the bottom of the opened page, download the
release-packages
archive.
It contains the following files:
net/DevExtreme.AspNet.Data/bin/Release/DevExtreme.AspNet.Data.99.0.0-ci-NNN.nupkg
devextreme-aspnet-data-99.0.0-ci-NNN.tgz
devextreme-aspnet-data-nojquery-99.0.0-ci-NNN.tgz
Unpack the .tgz
archive to a temporary location. On Windows 10, you can use the built-in tar
command for that:
tar xf devextreme-aspnet-data-99.0.0-ci-NNN.tgz
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 can 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>