How to get cmd line build command for VS solution?

Navigate to your Programs menu > Microsoft Visual Studio 2005 > Visual Studio Tools > Visual Studio 2005 Command Prompt. this command prompt has all the necessary .NET environment variables set for the the command line session. You can change directory to your solution directory (e.g. c:\projects\mySolution) and run Msbuild.exe mySolution.sln You can see the … Read more

Error “Keras requires TensorFlow 2.2 or higher”

I had the same issue caused by last keras release,what i remember did(): 1-Upgrade tensorflow: pip install –user –upgrade tensorflow-gpu (there might be some missing packages, just pip install them) 2-Upgrade Tensorboard pip install –user –upgrade tensorboard (there might be some missing packages, just pip install them) 3-Downgrade Keras pip install keras==2.3.1 (latest version working … Read more

“Are you missing an assembly reference?” compile error – Visual Studio

In my case it was a project defined using Target Framework: “.NET Framework 4.0 Client Profile ” that tried to reference dll projects defined using Target Framework: “.NET Framework 4.0”. Once I changed the project settings to use Target Framework: “.NET Framework 4.0” everything was built nicely. Right Click the project->Properties->Application->Target Framework