NuGet Packages for the DevExpress .NET Components - http://www.devexpress.com.
Here are unofficial NuGet specification files (nuspec) that I've created in order to generate NuGet packages for the .NET components developed by DevExpress.
If DevExpress ever authorizes me to publicly distribute their assemblies in NuGet packages, I'll be happy to publish them on the NuGet.org feed. In the meantime, if you are a DevExpress licensed user, feel free to use these nuspec files to generate the packages and host on your own private/company feed.
If you too think that DevExpress should provide us with official NuGet packages for their .NET components, send an e-mail to management@devexpress.com, or post a comment on their forum.
Please note that according to DevExpress EULA, every person working with DevExpress components should have a separate license. To properly register our components on your machine, use the DevExpress installer as described in the How to activate my DevExpress license article. Working with DevExpress components using libraries got from NuGet without proper registration may result in licensing violation.
I've created one NuGet package specification for every single assembly included in the DevExpress .NET controls, which in turn can be used to generate a NuGet package.
For example, the file nuspec\Unofficial.DevExpress.Xpf.Ribbon.nuspec
is the corresponding NuGet specification for the assembly DevExpress.Xpf.Ribbon.v15.1.dll
.
The dependencies between NuGet packages are created based on direct references to other DevExpress assemblies.
For example, if the assembly DevExpress.Xpf.Ribbon.v15.1.dll
directly references DevExpress.Data.v15.1.dll
, DevExpress.Mvvm.v15.1.dll
and DevExpress.Xpf.Core.v15.1.dll
, the NuGet specification will declare a dependency to each of the three NuGet packages corresponding to these assemblies:
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Unofficial.DevExpress.Xpf.Ribbon</id>
<version>15.1.4.0</version>
<!-- ... (omitted for brevity) -->
<dependencies>
<group targetFramework=".NETFramework4.0">
<dependency id="Unofficial.DevExpress.Xpf.Core" version="15.1.4.0" />
<dependency id="Unofficial.DevExpress.Data" version="15.1.4.0" />
<dependency id="Unofficial.DevExpress.Mvvm" version="15.1.4.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="lib\DevExpress.Xpf.Ribbon.v15.1.dll" target="lib\net40" />
<file src="lib\DevExpress.Xpf.Ribbon.v15.1.xml" target="lib\net40" />
</files>
</package>
- src
- lib
- This is where you put the DevExpress assemblies before you generate the NuGet packages. You will typically copy the contents of the folder
C:\Program Files (x86)\DevExpress 15.1\Components\Bin\Framework
and paste it here, including sub-folders;
- This is where you put the DevExpress assemblies before you generate the NuGet packages. You will typically copy the contents of the folder
- nupkg
- This is the output folder where the NuGet packages will be generated;
- nuspec
- This is where all the NuGet specification files are;
- tools
- This contains a simple Powershell script used by the NuGet packages related to assemblies that are only needed for design-time (i.e. assemblies in
lib\Design
). This script runs during the installation of these packages only to set theCopyLocal
attribute of these assemblies tofalse
, given that they are not meant to be deployed with the application.
- This contains a simple Powershell script used by the NuGet packages related to assemblies that are only needed for design-time (i.e. assemblies in
- lib
To generate all NuGet packages, just run the batch file src\nuget-pack.cmd
, or if you prefer to manually generate specific packages, just use the nuget.exe
command line utility. For example:
nuget.exe pack ".\src\nuspec\Unofficial.DevExpress.Data.nuspec" -BasePath ".\src" -OutputDirectory ".\src\nupkg"
-
The nuspec files are currently being generated by a quick-and-dirty C# app that I wrote, which is not ready to be shared with the world :). Once I get some free time to rewrite it (or make it a Powershell script), I'll definitely publish it here;
-
The language-specific assemblies for German, Spanish, Japanese, and Russian are currently not being included in any of the NuGet packages;
-
I use a very specific set of components, which means that there are a number of NuGet packages that I have not extensively tested. You've been warned;
-
Instead of generating a NuGet package for every assembly, the script could analyze the dependency chain and build clusters when possible - I'm not sure if it is worth the effort, though. I'm interested in hearing your opinion.
Please report any issues you find and I'll try to fix as soon I can, and remember you can always send a pull-request ;).
-
v15.1.4.0 - 2015-06-29
- Contains NuGet specs for the DevExpress Components 15.1.4 released on June 23, 2015
-
v15.1.3.0 - 2015-06-03
- Contains NuGet specs for the DevExpress Components 15.1.3 released on June 03, 2015
-
v14.2.7.0 - 2015-04-30
- Contains NuGet specs for the DevExpress Components 14.2.7 released on April 22, 2015
-
v14.2.6.0 - 2015-03-18
- Contains NuGet specs for the DevExpress Components 14.2.6 released on March 18, 2015
-
v14.2.5.0 - 2015-02-20
- Contains NuGet specs for the DevExpress Components 14.2.5 released on February 18, 2015
-
v14.2.4.0 - 2015-02-08
- Contains NuGet specs for the DevExpress Components 14.2.4 released on January 19, 2015
-
v14.2.3.0 - 2015-02-08
- Contains NuGet specs for the DevExpress Components 14.2.3 released on December 04, 2014
-
v14.1.9.0 - 2015-02-08
- Contains NuGet specs for the DevExpress Components 14.1.9 released on January 20, 2015
-
v14.1.8.0 - 2015-02-08
- Contains NuGet specs for the DevExpress Components 14.1.8 released on November 06, 2014
-
v14.1.7.0 - 2014-10-22
- Contains NuGet specs for the DevExpress Components 14.1.7 released on September 24, 2014
Copyright 2014-2015 Caio Proiete
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
The DevExpress components and trademark are Copyright (C) 2000-2015 Developer Express Inc. and their end-user license agreement is available at https://www.devexpress.com/Support/EULAs/NetComponents.xml.