Posts

When should the tabularx environment be used or not?

Image
0 I asked a question here and egreg replied that the tabularx environment was not the right tool. He solved the problem with the tabular environment. Werner didn't use it either. In this question Mico also says that the tabularx environment is not suitable. I thought the tabularx environment was adapted to get columns of the same width, but this can be done in the tabular environment as egreg did. Is the tabularx environment useful? When should we use the tabularx environment? Do you have any examples where this environment is useful? tabularx share | improve this question asked 13 mins ago AndréC ...

NuGet packages in Unity

Image
0 Hello fellow developers, I want to use some NuGet packages inside Unity. I achieved that Unity finds the downloaded DLLs according to this article (https://www.what-could-possibly-go-wrong.com/unity-and-nuget/). The nuget.config file can be configured to download the packages into the Plugins folder inside the Assets folder. The Problem is that NuGet downloads multiple versions of each DLL (eg net46, netcore50, netstandard21, so forth) and Unity doesn't like multiple DLLs with the same name. I know I could simply put the DLL inside the Plugins folder by hand, but unfortunately that is not a solution which would please me. Do you have any idea how I could work around this problem? Is it possible to configure NuGet to just download one DLL for each dependency? Thank you for your efforts and time. BlazeOHTion ...