The JIT Script option is not available under Tools=>Option=>Debugger=>JIT - visual-studio-2017

Under JIT I have Manage and Native
I doesn't find Script Option
I installed :
Visual Studio Community 15.8.9
Visual Studio Professional 15.8.9
Same problem, what I must do?

In order to add the script option you have to modify the Visual Studio Installation, adding the "ASP.NET and Web development" option.

Related

X Visual Studio is missing necessary components. Please re-run the Visual Studio installer for the "Desktop development with C++" [duplicate]

My Flutter Doctor is saying:
Visual Studio - develop for Windows
X Visual Studio not installed; this is necessary for Windows development.
Download at https://visualstudio.microsoft.com/downloads/.
Please install the "Desktop development with C++" workload, including all
of its default components.
How can I fix this problem?
It's basically saying that if you want to develop your Flutter application for Windows you will need to install Visual Studio 2022 and while installing Visual Studio 2022 you will need to download this: Desktop development with C++
Also, you have to install the third link in this: Visual-studio
You could also get desktop development with the C++ tool after installing Visual Studio and then navigating to tool → Get tools and features → Desktop development with C++.
The error means install Visual Studio, and this is different from Visual Studio Code. It's an IDE from Microsoft.
For those who may be using a weak computer and can't afford to install the full Visual Studio, you only need to install a few components from Visual Studio to get Flutter to run on your computer without errors. These components are:
MSVC v142 - Visual Studio 2022 C++ x64/86 build tools.
Windows 10 SDK (for Windows 10 users)
C++ CMake tools for Windows.
In total, they should occupy around 8 GB or so.
As it states, you need to download Visual Studio (which is different from Visual Studio Code).
When installing it, remember to select the required package Desktop development with C++:
This will not prevent you from developing Mobile apps, but it's a requirement only for Windows Development.
Is unnecessary to install the "Desktop development with C++" if you don't want to develop desktop applications for Windows using Flutter.
If you only want to develop mobile apps using Flutter, you can run
flutter config --no-enable-windows-desktop
to disable the desktop support for your Flutter projects. After that, when you run the flutter doctor command again, you will no longer see the warning.
Read more at: https://fig.io/manual/flutter/config
Only two steps are required.
Install Visual Studio 2022 (Link: https://visualstudio.microsoft.com/downloads/)
Install Visual Studio Code (Link: https://code.visualstudio.com/)
Your code will run smoothly.
My solution was a bit simpler. Uninstall everything all build system's from VS. Then reinstall Visual Studio Community 2022, restart then try again. Might get a warning about nuget but it should fix the issue.
With the newest android installer "android-studio-2022.1.1.19-windows" there would be a jbr and jre folder existing, hence creating a link from jre to jbr would not work.
What you can do is copy the contents of the items in jbr into the jre folder and this would resolve the error.
Make sure to install Visual Studio Code.
Open the Visual Studio download page:

Install AWS Toolking For Visual Studio 2017 for MAC

Is there a way I can install AWS Toolkit For Visual Studio 17 on MAC?
I downloaded the toolkit from https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.AWSToolkitforVisualStudio2017. If I open it with Visual Studio, it opens the file as a text editor.
I downloaded Visual Studio Community Edition from https://www.visualstudio.com/downloads/
Currently the AWS Toolkit for Visual Studio does not support Visual Studio for Mac. See below:
https://aws.amazon.com/visualstudio/
It still does not on 21/03/2021.
Open your VS Code and go to "Extensions" on the left hand side and click on it. Search for AWS Toolkit for Visual Studio Code. Once you find it, it's a fairly straightforward process to install it!

Reporting Template (RDLC) not exists in Visual Studio 2017

Reporting template Component (RDLC) not exists to as New Item in Visual Studio 2017 Enterprise.
How to resolve this?
I have tried by installing SQL Server Data Tools.
Previously it works for me in Visual Studio 2015.
There is a bug in the extension Microsoft Rdlc Report Designer for Visual Studio that the ReportViewer shows up as a non-visual component.
Instead use the NuGet Package Microsoft.ReportingServices.ReportViewerControl.WinForms for each project that will use the ReportViewer. Part of the solution involves removing the ReportViewer from the toolbox after use and restarting Visual Studio before opening the next project/solution.
Please see this answer to a similar question for step by step details.
The RDLC editor for VS2017 is only available as a VSIX installer from the marketplace: Download
I have just used VS2015 to add the new item. All other stuff seems to be fine in VS2017 (bearing in mind that you installed the VSIX extension)

Microsoft Visual C++ Build Tools compiler with Eclipse

Recently I decided to move from Microsoft Visual Studio to Microsoft Visual C++ Build Tools. I am working with the latest Eclipse and want to utilize the Microsoft C++ compiler.
While having Microsoft Visual Studio installed there was an option to choose the Microsoft compiler in the tool-chain options which went away and I can't seem to get it back with Microsoft Visual C++ Build Tools.
I have added the folders to user path and tried launching Eclipse from within the build tools "special" terminal but with no success.
Has anyone managed to achieve compilation within eclipse with the build tools and if yes how is it possible?
P.S.: I deliberately changed from Microsoft Visual Studio to Microsoft Visual C++ Build Tools, as the difference in disk size is vast.
I have Eclipse 4.6 Neon. In Help > Install New software make sure you installed C/C++ Visual C++ Support. Restart Eclipse after installation.
I can see Microsoft Visual C++ in Toolchains now.

Changing the default compiler in visual studio 2010

I have the Visual Studio 2010 installed in my system. However, my company has a different central build system and uses the compiler from Visual Studio 6. Is it possible for me to use this compiler for compiling my C++ projects in Visual Studio 2010? If yes, where to configure this?
I checked in the project settings dialog, but couldn't find any option for this. I know how to use the old compiler from the command line and I don't want to do that.
The Daffodil for Visual Studio extension (http://daffodil.codeplex.com) allows you to set any installed toolset/compiler under Project settings in VS 2010.