augustoproiete / DevExpress-NuGet

Unofficial NuGet Packages for the DevExpress .NET Components - http://www.devexpress.com
Apache License 2.0
50 stars 22 forks source link

Continue on error. #17

Open wpostma opened 7 years ago

wpostma commented 7 years ago

I am trying this with devexpress asp.net controls 16.2.3 and I think that continuing on error would be a more sensible default.

So for example, this would mean delete (shown here commented out) the two lines that make the powershell script just halt on the first error it hits:

//$ErrorActionPreference = "Stop"

Clear

Get-ChildItem ".\nuspec" -Filter *.nuspec | `

Foreach-Object{
    Write-Host $_.Name

    & "..\nuget.exe" pack $_.FullName -BasePath "." -OutputDirectory ".\nupkg"

    if ($LASTEXITCODE -ne 0)
    {
        Write-Error "Error generating nupkg for '$($_.Name)'"
        // break
    }
}

When I run this with devex 16.2, multiple files FAIL for me because the .XML files are missing, perhaps they were not shipped anymore with the developer express installer?

wpostma commented 7 years ago

There are a lot of missing XML package manifest file names for me. Anyone having any idea why these are all mentioned as not found, some are Designer and some are not. Perhaps my company only owns a portion of the developer express for asp.net webforms, and the ones below like DevExpress.XtraRichEdit are WinForms, and WPF, and Reporting and Chart stuff we don't own?

nuget.exe : File not found: 'lib\DevExpress.Charts.Designer.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Mvvm.v16.2.DataModel.EF6.xml'.
nuget.exe : File not found: 'lib\DevExpress.Mvvm.v16.2.DataModel.WCF.xml'.
nuget.exe : File not found: 'lib\DevExpress.Mvvm.v16.2.ViewModel.xml'.
nuget.exe : File not found: 'lib\DevExpress.Snap.v16.2.Extensions.xml'.
nuget.exe : File not found: 'lib\DevExpress.Snap.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.SpellChecker.v16.2.Core.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Carousel.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Charts.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Controls.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Core.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Docking.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Gauges.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Grid.v16.2.Core.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Grid.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Layout.v16.2.Core.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.LayoutControl.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Map.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.NavBar.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.PdfViewer.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.PivotGrid.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Printing.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.PropertyGrid.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.ReportDesigner.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Ribbon.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.RichEdit.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Scheduler.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.Spreadsheet.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.Xpf.TreeMap.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraBars.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraCharts.v16.2.UI.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraDiagram.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraEditors.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraGrid.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraLayout.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraMap.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraNavBar.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraPdfViewer.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraRichEdit.v16.2.Extensions.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraScheduler.v16.2.Extensions.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraScheduler.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraScheduler.v16.2.Reporting.Extensions.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraScheduler.v16.2.Reporting.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraSpellChecker.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraSpreadsheet.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraTreeList.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraTreeMap.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraVerticalGrid.v16.2.xml'.
nuget.exe : File not found: 'lib\DevExpress.XtraWizard.v16.2.xml'.