Muhammad Miftah

Results 24 comments of Muhammad Miftah

> I did try adding a ILRepack.Config.props to the project file and noticed no different when building and deploying as it still says that there is not a key assigned...

OK I've solved this on my own. Instead of putting the key details in it's own **ILRepack.Config.Props** file: ```XML $(ProjectDir)key.snk ``` It works to put a `KeyFile` XML attribute in...

Hi, I think I found a solution: In the `libstuff.h:` file, replace `#include ` with `#include `. That fixed it for me. Found it from https://stackoverflow.com/questions/7248509/strcasecmp-was-not-declared-in-this-scope

I'll see what I can do. It seems fixing that one error just surfaced a bunch of others - I'll see how to go about fixing them as they seem...

> Just wasted 2 hours to get it work. This package does not work with Costura.Fody or anything else that embeds references as resources. Yes I can confirm you have...

As mentioned https://developercommunity.visualstudio.com/t/better-xsd-xml-tooling/426740, the xsd.exe source code is available here: https://github.com/microsoft/referencesource/blob/master/xsd/microsoft/devapps/xsd/xsd.cs

Yes I'm getting this exact same issue; but I'm using EfCore 6. Haven't at all touched the model file, just updated the extension to 4.2.7. Doing a bit of digging,...

Good question; looking at the technical documentation in the [wiki](https://github.com/mamift/LinqToXsdCore/wiki), which is a copy of the technical manual Microsoft published back in 2011 and the source code for the [XTypedElement...

Hello, thanks for reporting this. To get around this, try to fully qualify the type name (not the class member), with it's CLR namespace. the code generator does not have...

> I'm sorry, can you please provide an example of what you mean by "**try to fully qualify the type name (not the class member), with it's CLR namespace.**" So...