Skip to content

Full Stack Developer Blog

Just The Programming Blog

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

Visual Studio

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

How to Set Conditional Breakpoints in Visual Studio 2022?

When debugging a program, a situation often arises where it is necessary to trigger a breakpoint only if the variable contains a certain value. Very often this situation arises in the loop. Let’s look at … Read more

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

Posts you may like

  • How Smoothly Insert Millions of Rows in SQL Server?
  • How to Connect SQL Management Studio with Local SQL Server Express?
  • Create a Quick Copy of a Table and Place it in the Same Database
  • How to Fix xUnit Test not Running Error – “Test project does not reference any .NET NuGet adapter”
  • How to check if a column exists in the SQL Server table

Footer Menu

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