Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I tried and can download the latest version of the xamarin studio (i.e. 5.7.2) from the account, but I cannot find any option for xamarin studio 5.8. I am looking for xamarin studio 5.8 download link.
Windows or OSX? You should be able to download via the updates menu inside of Xamarin Studio itself. Here is the hard link: http://download.xamarin.com/studio/Mac/XamarinStudio-5.8.0.443-0.dmg.
Maybe they just updated the site? I checked my install files on my subscription page and it is there in the dropdown list.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I was playing around Android Studio and don't remember what i changed, i am not able to switch my project back to flutter structure. I can open it in Visual Studio code correctly but in Android studio, it always open like below and i am unable to find option to revert back what i did.
When i click on project tab.
I had the same problem, the solution that worked for me was to cilk on the project button
Then select android (in my case) and switch it for project folder
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I tried to install Android Studio 2.1 on my netbook, 32 bit.
But, after I execute android-studio-bundle-143.2915827-windows.exe, an error occurred and I cannot install it.
the following SDK components were not installed android support repository and android sdk tools
I searched it but I have no idea what to do, would you please help me?
I click "retry", but this error occurs again, then I click "cancel" and uninstall and reinstalled it, this error happens again.
Sorry, I just needed to run .exe as an administrator.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am going to develop a windows application for a customer which takes probably one month for development. As our company doesnot want to invest much for this project can i use trial version of Visual Studio professional 2012? will it cover all features and will be ok for deployment?
i see it is easy to extend with paied version in case the project will be extended
As per EULA: You may only use the trial software for internal evaluation purposes.
That would mean that it should not be used to deploy the software compiled with it.
The trial version works for 90 days so that should work. But then if they want maintenance done on the application they will have to install the Visual Studio 2012 Trial again, on another PC (or re-install Windows first on the original PC, and then re-install Visual Studio 2012 trial on it), or purchase a full license.
Do you need all the features of Visual Studio 2012? Perhaps the Express Edition (which is free) is capable enough. Then there will be no problem with an expired license etc.
Yes you can. You can download the express version of VS using this address http://www.microsoft.com/visualstudio/eng/downloads#d-express-windows-8.
Of course there are some differences between the paid version and this one, but basically both are the same software.
I think the biggest difference is the fact that the professional edition wraps all the supported environments and the express edition you have to download whatever you want separately.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I've started playing around with DGML for visualizing directed graphs based on some manufauctring process flow data. It works slicker than proverbial snot and is quite easy to generate.
The only problem is that the only DGML viewer I can find is VS.NET 2010. It appears that the viewer is built on MSAGL, but even that doesn't appear to support DGML directly.
Does a standalone DGML viewer exist? Preferably as an embeddable component. Even more preferably as WPF.
The DGML Editor was not available in Visual Studio 2017 by default so I could not see DGML files visually and only saw them in the xml format.
I had to fix this by explicitly installing the DGML editor.
Please install it as such:
(Tools > Get tools and features... > Individual Component > Code tools > DGML Editor)
I encourage you to submit a request by selecting Suggest a feature on this page as further support for a standalone DGML viewer. It might help persuade the product team that there's enough of a demand for one.
There is a DGML Viewer in Visual Studio 2019. You can install it via Visual Studio Installer. Just open Visual Studio Installer, click on Modify, select Individual Components, Code Tools, DGML Editor. To create the DGML files from a DbContext on an EF Core application, you can use EF Core Power Tools. The image below is from a DGML generated by EF Core Power Tools and viewed using DGML Editor. I hope it helps.
The DgmlPowerTools Visual Studio 2012 package gives you the option to export DGML to SVG:
https://visualstudiogallery.msdn.microsoft.com/46b71f5f-a4d5-4867-9d50-0416f7aefe28
Alternatively, I'm pretty sure given a few free weekends it would be easy to knock up something to convert DGML to HTML (e.g. using HTML5 Canvas to display, or one of the many graphing libraries such as D3.js)...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
When you download visual C++ 2008 express edition, this file exists:
./Microsoft Visual Studio 9.0/VC/redist/x86/Microsoft.VC90.CRT/msvcr90.dll
In the file redist.txt it says
The following list is a list of files available with Microsoft Visual Studio 2008 for redistribution under the Visual Studio 2008 license. If the Microsoft software you have licensed is not Visual Studio 2008, only the files that are installed by the Microsoft software may be redistributed under such license.
and includes the above msvcr90.dll
So my question is, does this license allow you to distribute msvcr90.dll from express or not? What does "only the files that are installed by the Microsoft software" mean? Any help? (specifically, is it not allowed to distribute a version of msvcr90.dll with an app built by mingw/gcc).
My current thought is that you can probably get away with "running" MS's official msvc redistributable exe. as part of your install process (or possibly download it separately, if you detect they do not have it installed)
See https://stackoverflow.com/a/9214753/32453