trouble trusting https certificates for .net 6 – Asp.net
I'm trying to set up a web app project in visual studio 2022 and when I run it asks me to trust SSL and it says there was an error trusting and always start in untrusted mode in the browser.…
I'm trying to set up a web app project in visual studio 2022 and when I run it asks me to trust SSL and it says there was an error trusting and always start in untrusted mode in the browser.…
Currently, I want to practice my C++ so I open a new folder to write some C++ codes. But weird thing happened. The editor shows me that one library bits/stdc++.h can not be resolved. Initially, I tried to delete and…
Is there a way to deactivate several lines of code in visual studio? I'm currently typing // in from of each line when I need to deactivate a segment of code (for debugging etc), but it gets tiresome.
There is support for Step Function in Visual Studio Code using AWS Toolkit. I could not find anything similar for Visual Studio 2022. Is there any way for having Step Functions in Visual Studio 2022?
If I run the code analysis in Visual Studio 2022 (on a c++ project) I get a XML and a SARIF file for every code file. No I try to run the code analysis with MSBuild 2022: MSBuild.exe solution.sln -p:Configuration=Release…
please help. I have installed quite a lot of framework and development pack. as you can see in the image. unfortunately I want to access an ancient project. this project runs on .net framwork 4.5, and must not be upgraded.…
Found several similar questions for older VS versions, some especially mentioning C++. I'm getting the effect with C# as well as VB.Net projects in Microsoft Visual Studio Community 2022 (64-bit) - Version 17.3.3 Steps to reproduce: Open a new VS2022…
I wrote this program like the title says but it says system.char[] for some reason. using System; public class q2 { public static void upperNreverse(string inp) { char[] inpChar = inp.ToCharArray(); Array.Reverse(inpChar); string inpString = Convert.ToString(inpChar); string finalString = inpString.ToUpper();…
When I create a new Web MVC project in VisualStudio 2019 (v16.11) I get this strange effect on carousel buttons. In particular, they are shaded and bordered. I've checked, Visual Studio is using Bootstrap v4.3.1 in this template. Down below…
I use Visual Studio's Node debugger on a website on the MEAN stack (Typescript on server side, Angular 2 on client side). I was used to see VS terminal open when I "Run: script dev" and see the logs scroll…