Rider Project ‘something.csproj’ targets ‘NET_4_6’. It cannot be referenced by a project that targets ‘.NETFramework,Version=v4.0’

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 …

remote: Invalid username or password. fatal: Authentication failed

remote: Invalid username or password. If you log in via a third party service you must ensure you have an account password set in your account profile. 17: fatal: Authentication failed I’ve been experimenting with some Unity features, one of them is the Cloud Build. On my test game I have a submodule repo and, …

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”/]

Major version X is newer than Y, the highest major version

major version 52 is newer than 51, the highest major version supported by this compiler. Got this error again after a long time without seeing it. The problem here is related to your JDK version. You can open your Terminal (Mac) and type “java -version” to check which version you have. In my case I had 1.7… …

Unity and iOS 9 – Invalid Bundle. iPad Multitasking support

Just had another problem when trying to upload our game to iTunes Connect (Beta). ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations: ‘ UIInterfaceOrieentationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight’. Found ‘UIInterfaceOrientationLandscapeRight’ in bundle ‘com.domain.app’” To fix this one you’ll need to add another node to the info.plist file: [pastacode lang=”” message=”” highlight=”” provider=”manual” manual=”%09%3Ckey%3EUIRequiresFullScreen%3C%2Fkey%3E%0A%09%3Ctrue%2F%3E”/] Compile it again and it …

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 …