HebaruSan

Results 422 comments of HebaruSan

We're seeing the same error message: ```xml ERROR: Failed to merge configuration files: System.Data.DuplicateNameException: The name 'configuration' is invalid. A DataTable cannot have the same name of the DataSet. at...

Yeah, don't worry about the build. It's a new experimental thing that I just added recently, and it's probably failing because the GitHub Action secrets aren't available in other forks....

@pulssolidarite, did you ever solve your issue with EdgeJs? In case it might help future web searchers, my workaround based on @b0g2's work in https://github.com/pythonnet/pythonnet/issues/1034#issuecomment-626373989 is: ```javascript Object.assign(process.env, { //...

Hi @VNBLor, please fill in the issue template: https://github.com/KSP-CKAN/.github/blob/master/.github/ISSUE_TEMPLATE/bug_report.md We need that info to help you.

We started creating an org on Nuget, but it's not fully set up yet. I think a confirmation email was sent to `[email protected]` and not responded to. This was for...

This was done deliberately to discourage installation of files into GameRoot: https://github.com/KSP-CKAN/CKAN/pull/83#discussion_r19053307 ![image](https://user-images.githubusercontent.com/1559108/74088993-f02d3880-4a61-11ea-90c3-9ba22e0b99c8.png) --- Relevant bits of the spec: - GameRoot (which should be used sparingly, if at all). -...

This mod's current release structure could not be indexed correctly anyway (same version number assigned to two different downloads for different game versions): https://github.com/linuxgurugamer/SoundtrackEditorForked/releases/tag/4.6.1.2 ![image](https://user-images.githubusercontent.com/1559108/74090593-c6304200-4a72-11ea-96bb-037b69b42b43.png) ![image](https://user-images.githubusercontent.com/1559108/74090633-49ea2e80-4a73-11ea-8475-f766520d4976.png) ____ Also the ZIP...

This looks like a problem with your Mono installation, since there is no actual CKAN code in the stack trace other than the `CKAN.Main` constructor calling `Application.Run`. What distribution do...

Here's the function that throws the exception. https://github.com/mono/mono/blob/d4a369b3e651ca92e27ae711c37177e1f42fa300/mcs/class/System.Windows.Forms/System.Windows.Forms/ToolStripMenuItem.cs#L402-L413 There's one cast: ```csharp Form f = source == null ? null : (Form)source.TopLevelControl; ``` Which suggests the problem is that `source.TopLevelControl`...

Possible additional Mono bug, it must not be respecting this part of the documentation to throw here: > If the control is not parented on a Form, this property will...