Ironpython 2.7.3 Visual Studio Missing Project - c#

I have installed IronPython 2.7.3. I would see a IronPython project in the visual studio.
I have visual studio 2010 professional. My problem is that. I do not see the Iron Project.
Why, where is that? Now I am downloading the Ultimate. Maybe the version of the visual studio is the problem?

The project templates are part of PTVS, not IronPython. Old versions of IronPython did include Visual Studio templates, but they were removed in favour of PTVS.

Related

WebTest Project in Visual studio 2017 professional

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.

Is there a way to use monogame 3.2 on visual studio 2015

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.

Cant find Visual Studio Installer Projects on Visual Studio 2013

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

Visual Studio 2010 Build server with VS 2013 Solution

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.

converting java projects to c# with visual studio 2010

i remember that previous versions of visual studio contained a converter, that automatically attempt to convert java projects to the corresponding c# code.
however in visual studio 2010 beta 2 i cant find this anymore?
has it been removed?
thanks!
The Java Language Conversion Assistant has been removed from Visual Studio 2008 and future versions. You have few options:
Install VS 2003/2005 and run the assistant
Purchase a commercial solution
Do the conversion by hand
Use ikvmc to compile jar files into managed .NET assemblies (personally I've done this with success)
I think that was visual studio 2005 , as far as i know it doesn't exist on 2008 or 2010

Categories