Skip to content

Full Stack Developer Blog

Just The Programming Blog

  • C#
  • Visual Studio
  • SQL
  • jQuery
  • Misc

Visual Studio

Resolving ‘Error TS1219’ in Angular Build: Handling Experimental Decorators in Visual Studio 2022

A few weeks back, I encountered a build issue accompanied by the following error: Severity Code Description Project File Line Suppression State Error TS1219 Build:Experimental support for decorators is a feature that is subject to … Read more

Categories Visual Studio Leave a comment

How to Fix xUnit Test not Running Error – “Test project does not reference any .NET NuGet adapter”

Today I faced that Visual Studio 2022 does not run xUnit tests in the Test Explorer. And in the output I found the next error: “Test project MyProject does not reference any .NET NuGet adapter. … Read more

Categories Visual Studio Leave a comment

Collapse and Uncollapse Sections of Code in Visual Studio Code – Shortcuts

Here is the list of shortcuts to fold or collapse sections of code in Visual Studio Code: Collapse current section(where the cursor is active):: Ctrl + Shift + [ on Windows and Linux ⌥ + … Read more

Categories Visual Studio Leave a comment

What are the Differences Between Visual Studio Code and Visual Studio?

Visual Studio Code and Visual Studio are two of the most popular editors used by developers today. Both tools are powerful, feature-rich and offer a wide range of functionality. But what are the differences between … Read more

Categories Visual Studio Leave a comment

How to Change Visual Studio Theme? Change to Dark Theme

The Visual Studio allows changing themes. The default theme is “Blue”, let’s switch it to the “Dark” theme. To change the theme in Visual Studio do the next steps: 1. Go to the “Tools” menu, … Read more

Categories Visual Studio Leave a comment

Generate C# Class From JSON in Visual Studio

Using Visual Studio 2012 or newer you can just “Special Paste” your JSON as C# classes. Steps to Generate C# Class from JSON Copy your JSON content to the clipboard In file the editor, select … Read more

Categories Visual Studio Leave a comment

How To Display Suggestion Menu with USINGS in Visual Studio?

The keyboard-shortcut that shows the suggestion menu with the necessary using statement is Ctrl – . or Alt – Shift – F10. The using statement appends to the top of the file after selection. Here … Read more

Categories Visual Studio Leave a comment

Top-level statements must precede namespace and type declarations

A few days ago I wanted to create a simple C# Console Application. And faced with the error: “error cs8803: Top-level statements must precede namespace and type declarations“. My problem was that I started to … Read more

Categories C#, Visual Studio Leave a comment

How to Comment Code in Visual Studio Code? Shortcut

Visual Studio Code has the possibility to comment and uncomment the single line code and multiple lines. I want to share two shortcuts to do it in the Windows OS. Both hotkeys work for single … Read more

Categories Visual Studio Leave a comment

How To Auto Format Code in Visual Studio 2022?

Formatting code allows you to improve the readability of the code, and as a result editing. The Visual Studio 2022 allows you to format both selected sections of code and the entire document. Let’s show … Read more

Categories Visual Studio Leave a comment
Older posts
Page1 Page2 Next →

Posts you may like

  • How to Sort a List by a property in the object?
  • Blazor Webassembly vs Blazor Server – What is Difference and What to Use?
  • How to Comment Code in Visual Studio Code? Shortcut
  • How to Set and Get the Attribute in jQuery?
  • How to Become a Programmer in your 30-40s?

Footer Menu

  • Privacy Policy
  • Contact me
  • About
  • Disclosures
  • Write Us a Guest Post
© 2023 Full Stack Developer Blog