I have been reading the documentation on WebTet and LoadTest projects and visual studio and at the time of creating the project in visual studio 2017 Prfessional I discovered that the template does not exist.
https://learn.microsoft.com/en-us/visualstudio/test/quickstart-create-a-load-test-project?view=vs-2017
inquiring I discovered that it only exists for the enterprise version.
Is there a similar type of project or extension that I can use in the same way for Professional?
No. Web and Load test types and projects are only available in the Enterprise version. See (and expand) the "Testing tools" section of the Visual Studio version comparisons page.
Related
[I asked this question in MSDN in June and have had no replies as yet so I am hoping that I can get an answer here. A stackoverflow search for "uwp blend" yielded exactly 100 results, none of which are for the same issue as here.]
I created a brand new WIndows Template Studio solution - called "AppName" - with VS 15.7.3 and added a .NET Standard 2.0 class library project - called "ConversionService" - to the solution.
When I tried to open the solution in VS Blend 15.7.3 (same version number as VS) I got the following - rather scary - message:
One-way upgrade
Visual Studio will automatically make functional changes to the following projects in order to open them. You will not be able to open these projects in the version of Visual Studio in which they were originally created.
- ConversionService, "[location redacted]ConversionService.csproj"
Non-functional changes required
Visual Studio will automatically make non-functional changes to the following projects in order to enable them to open in Visual Studio 2015, Visual Studio 2013, Visual Studio 2012, and Visual Studio 2010 SP1. Project behavior will not be impacted.
- AppName, "[location redacted]\AppName.sln"
No changes required
These projects can be opened in Visual Studio 2015, Visual Studio 2013, Visual Studio 2012, and Visual Studio 2010 SP1 without changing them.
- , ""
What does the above message mean? (I redacted the actual file locations.)
It seems to say that I won't be able to go back into VS to edit the ConversionService project, which is definitely something I want to be able to do.
Why does VS Blend 15.7.3 seemingly not like projects created in VS 15.7.3?
(I previously had the same issue with another completely separate solution containing UWP and NET Standard projects but I didn't need Blend for that.)
I've installed Visual Studio 2017 Enterprise on my computer with the Installer and there are some optional options like the "Class-Diagram".
I've checked it but it won't show up in my project templates.
Programm language: C#
Version VS 2017: 15.0.26228.9
Version VS Installer: 1.5.30308.1
VS Installer - Class Diagram is checked and already installed (Screenshot)
On the left hand side, we can't find the category "Model Project" like in VS 2015
Regards
It seems the 'modelling project' feature is removed from Visual Studio 2017. Reasons are given here https://blogs.msdn.microsoft.com/devops/2016/10/14/uml-designers-have-been-removed-layer-designer-now-supports-live-architectural-analysis/
Have you added the Visual Studio extension development?
Along with Class Designer, you have to include Visual Studio extension development also from the VS2017 installer.
If you have installed all the required things mentioned above and if you are still not seeing the Class Diagram from Solution Explorer , switch to Class View and then you will see the "View Class Diagram" option
I have only a computer with 32 bit based windows and can't run versions of monogame higher than 3.2. To install monogame 3.2 I need visual studio 2013 or 2010 but I have 2015 and have not enough space to install 2013. Is there a way to install the templates of monogame 3.2 on visual studio 2015
First off: you're not getting the new Content Pipeline, so you will have harder time with building content, especially as you can't offload that to XNA either. The templates have nothing too magical, and you could manage with normal projects, just adding the assembly references and the Game class.
Now, to answer the question... Looking at the installer source code, I think the following workaround might work:
Go to your Documents folder. There should already be a folder named Visual Studio 2015.
Create the following folder tree: Visual Studio 2013\Templates\ProjectTemplates\Visual C#
Run the installer. You should now be able to install Visual Studio 2013 templates.
Go to the folder you created in step 2. There should now be a folder named MonoGame.
Copy that folder to the Visual Studio 2015\Templates\ProjectTemplates\Visual C# folder.
You should now see the templates in Visual Studio 2015.
After finishing my C# application I had to make an installer. After seeing that the default installer projects are gone, i searched for a replacement.
I found the Visual Studio Installer Projects. I downloaded the file from here: https://visualstudiogallery.msdn.microsoft.com/9abe329c-9bba-44a1-be59-0fbf6151054d.
When i restarted Visual Studio, opened my project, clicked "add new project" and here is what I got:
Problem is that I cant find the setup project. I have tried repairing the install. I restarted Visual Studio several times.
My Question:
How can I find the installer project and why it's not working for me.
If I cant make it work, are there any alternatives ? (except InstallShield)
Additional info:
Visual Studio 2013 Community with update 4
Windows 8.1 64-bit
You could try Tools > Extensions and Updates and search for it:
Visual Studio setup projects no longer ship with Visual Studio
However, you can download them here.
Or use a third party library like WiX.
I had the same problem and it turns out that visual studio removed the support for installer projects in 2010.
but still you can download and install it in your version
VS2013
VS2015
VS2017
I was wondering if it was possible to build (in release) a 2013 visual studio solution file within Visual Studio 2010.
Search engine is coming up with 2010 to 2013 related issues.
Thanks
First, you will probable need SP1 for Visual Studio 2010. Even then you need to refer to the Visual Studio 2013 compatibility page to determine if the scenario you are looking for is supported. It will depend on the exact type of project you are building, the version of framework you are using, templates you are using, etc.