Posts

Showing posts from 2024

Donate

How To Publish Visual Studio 2019 .NET Applications Or Projects To GitHub Using GitHub Extension

Image
Hello and Good day! Here's a step by step demonstration on how to upload or publish your C#, VB.NET or ASP.NET projects to Github using Visual Studio GitHub extension. Download and install the GitHub Extension for Visual Studio from the Visual Studio MarketPlace. After installing the GitHub Visual Studio Extension, navigate to the Team Explorer pane and click the Github Sign-in link. The default browser will launch the GitHub login page, that will require you to supply the username and password. When logged-in to Github, go back to your project, right click on the Project Solution and then click the Create GIT Repository . The Create a Git repository dialog will pop-up wherein you need to fill out the required information under the Create a new GitHub repository section. Once completed, click the Create and Push button. Go to your GitHub page and you may notice that the repository has been created along with the source code that's published. Cheers!

Visual Studio Error - This Emulator Does Not Have Hardware Acceleration Enabled In Xamarin And .NET MAUI

Image
Good day! After switching laptops and running some of my Xamarin Forms projects and simple .NET Maui applications, I encountered this error This Emulator Does Not Have Hardware Acceleration. Since this is a new laptop, I need to setup and enable the firmware virtualization and Hyper-V for Windows 10 operating system. First is I need to open the BIOS interface of the laptop and look for the Virtualization Technology under Security tab. By default, it's disabled Next is to enable it and then save changes. After modifying the BIOS settings for virtualization, you need to enable Hyper-V and Windows Hypervisor Platform checkboxes thru the Turn Windows Features On or Off application. Then restart your laptop or machine. Once I made those changes, I was able to run my applications using the Android emulator in Visual Studio. Cheers!

Visual Studio Code CSS Intellisense Not Working In CSS Files

Image
Hello, Lately, I was working on some CSS files that needs to be updated as per client request. It seems weird that the intellisense does not show it's dropdown of values for a specific style, as I remember this was working before. After doing some experiments and tests, here's the solution that worked for me in order for the CSS intellisense to work as expected on your Visual Studio Code editor. First is open settings tab using shortcut "Ctrl + ," or click the manage button at the bottom left of the editor. Expand the Text Editor menu and choose Files. Add items for *.css and css with values of css for each item. Once the steps are performed, this will resolve the CSS intellisense issue. Cheers!

Donate