-
-
Notifications
You must be signed in to change notification settings - Fork 19
Some .dlls don't have matching .xml file #7
Description
First off thanks so much for the effort to create this project and keep it updated. Hopefully it will solve some of DevExpress minor version nightmares. This is the first time I've attempted to build NuGet packages and I'm trying to use the nuget-pack.ps1 script. (for now I'm testing the 14.2.4 version) The issue I'm having is that some dll's don't have a matching .xml file and the script stops executing with a file not found error. So what I'm doing for the moment manually editing the .nuspec file and comment out the .xml file line. For example,
<file src="lib\DevExpress.Dashboard.v14.2.Core.xml" target="lib\net40" />
Is this just something I will have manually handle each time we upgrade and rebuild the packages?
Also, when it come to rolling back to a previous nuget package version what is the recommended way? Would I need to open the Package Manager Console and specify the exact package version number we need to rollback too in the command line? For example, Install-Package <DX_PACKAGE_NAME> -Version 14.2.3
Again Thanks So Much for the effort!