Best Of
Re: Can I get WrapPanel to use the full-width of the screen without hardcoding the children's width?
After F12-ing on base.ChildVerticalAlign
and seeing what it does, I was able to get this working using
public class FullWidthWrapPanel : WrapPanel { public FullWidthWrapPanel(params Control[] children) : base(children) { base.Gap = "0.1%"; base.ChildVerticalAlign = "top"; base.CssChildRules[">div", "width"] = $"{Math.Round((100.0 / children.Length), 2) - 0.1}%"; } }

Re: LINQPad 9 - Early Preview now available
@sgmoore - thanks. These issues should now be fixed. The reason you can't F12 on Dump is because when automatic headings are selected, your call to Dump goes via hidden intermediate code in your script. The fix for this is not easy.
@romfir - thanks - this is now fixed.

Re: LinqPad 8 macOS LINQPad.ExecutionModel.ProcessCreationException
A LINQPad 8 for macOS update has now been released to fix this issue. Let me know how you get on.

Re: LINQPad 9 - Early Preview now available
@PedroSantos - you're in luck! This feature is relatively easy to implement with the new editor. Try the new 9.1.3 build and let me know.

Re: Certain resource files are not being put in output directory
Remove the reference to jeff.dev_aus.cert.pem, and it works.
It does not seem to like two files with the same root name but with different extensions.

Re: Azure devops nuget feeds
Point 1 can easily be fixed, but point 2 creates much more of a problem. The only viable workaround would be to retrieve every package and then filter locally. Would this work in your case? I don't know whether the search API also flows through to an upstream source. If so, this would definitely not be a solution.

Re: LINQPad 9 - Early Preview now available
DualXraY - thanks. This will be fixed in the next build.

Re: LINQPad AI Assistant Preview - feedback needed
This might be due to lack of training data, especially with LINQPad scripts. VB use in LINQPad has dropped to a fraction of 1%.

Re: Linq To SQL Driver Column Encryption Setting=Enabled
LINQPad 9 is now in early preview:
https://www.linqpad.net/linqpad9.aspx
Let me know how you get along.

LINQPad 9 - Early Preview now available
LINQPad 9 is major update that unifies the Windows and macOS codebases, more than a year in the making. For Windows users, there's a major UI refresh, including a brand-new dark theme, customizable keyboard shortcuts, connection grouping and more. While the planned RTM date is November, an early preview is now available:
https://www.linqpad.net/linqpad9.aspx
Let me know your thoughts!
