Got this error while setting up my new working environment. For some reason I skipped Mono and .NET installations while installing and configuring Rider. This seems to have caused some misconfiguration in Rider. So the solution for me (Mac) was simple: Open Rider Go to “Preferences/Build, Execution, Deployment” Then “Toolset and Build” You might notice …
Category archives: Hints
Batch validate all XML files using MAC Terminal
Just found this to be very useful as I have several XML files and after making some changes its nice to make sure that they are still well-formed. This terminal command will throw DTD errors, which can be fine if you don’t use them (DTD is not mandatory). [pastacode lang=”bash” manual=”xmllint%20–valid%20–noout%20**%2F*.xml” message=”” highlight=”” provider=”manual”/]
Unity and iOS 9 App Transport Security – HTTP
I’m finishing one turn based Multiplayer game (at Mukutu Game Studio), which has our own server implementation and, at least for now, works using HTTP requests. The implementation that we have now works perfectly and suit our needs because there’s no visible sensitive data… BUT, after iOS 9 launch, the game just “died” “:D” Looking at …
Continue reading “Unity and iOS 9 App Transport Security – HTTP”