How to add config transformations for a custom config file in Visual Studio?

Visual Studio transforms only web.config files by default. If you need custom config file with transformation for DEV, UAT, PROD, etc environments, then try to Use custom extensions for Visual Studio like SlowCheetah – XML Transforms for Config transformation preview functionality. Add for the project from Nuget SlowCheetah to provide build in transformation. A little … Read more

aspx.designer.cs how does it work?

The .aspx.designer.xx files are the bridge for the ASP.NET webforms code-behind files and the .aspx markup files. Any server control existing on the ,aspx markup page is represented here. Most important are the name and type of the server control. This, in part, allows Visual Studio to give the user IntelliSense in the code-behind page … Read more

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