glopesdev

Results 47 comments of glopesdev

Regarding copyright its a complex story. You are totally correct regarding contributions, but tracking these things can get messy. As a rule of thumb I assume that if the original...

Actually, you can include MSBuild snippets in a NuGet package which will be included as if they are part of the final build project using the `.props` and `.targets` files...

Thanks for your feedback. Diving deeper I am happy to say I can now give concrete answers to all of the above and if you test drive the latest commit...

@dmedine of course, I use this technique all the time! The only requirement is to include the `.props` and `.targets` file in the `build` folder of the NuGet package with...

Hmm, it looks like in this example you still have a `ProjectReference` to the original project. Can you try removing that and adding just the package reference? Also in this...

@dmedine @tstenner I believe you can do this already at package import time when you specify which assets to include or exclude from each package ([see here](https://docs.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#controlling-dependency-assets)). For example, to...

@tstenner I like the suggestion regarding versioning, it is useful to be able to map the wrapper version directly to the base library version I agree it would not be...

@tstenner The current "official" way is to call `SetDllDirectory` or more generally simply depend on OS dynamic library resolution (e.g. using the PATH environment variable) to point to the appropriate...

@NogginBops I am a bit busy atm so please feel free to go ahead and do the retargeting. I am happy to have a look and review if you need...

@dmontagu this issue is actually breaking interop of pydantic generated schemas with NSwag, since they only recognize either the type list annotation or the `oneOf` constraint, but not `anyOf`. I...