I'm trying to run build agents in my azure pipeline, but the code is written in VS 2013, so my tests are failing when I'm using VS 2019 installed on the server.
I'm trying to figure out if there's a way to just install the testing suite for VS 2013 without installing the whole IDE on the server.
Is there any way to do this?
The Microsoft-hosted agent pool provides 7 virtual machine images to choose from:
Visual Studio 2019 Preview on Windows Server 2019 (windows-2019)
Visual Studio 2017 on Windows Server 2016 (vs2017-win2016)
Visual Studio 2015 on Windows Server 2012R2 (vs2015-win2012r2)
Windows Server 1803 (win1803) - for running Windows containers
macOS X Mojave 10.14 (macOS-10.14)
macOS X High Sierra 10.13 (macOS-10.13)
Ubuntu 16.04 (ubuntu-16.04)
You can try it first and see if it works for your build or deployment. If not, you can use a self-hosted agent.
https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#use-a-microsoft-hosted-agent
Follow the below document to create a self-hosted agent and install VS2013 on it.
https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=azure-devops
Related
I've built an ASP.NET Core 2.0 MVC Web app on an OS X machine. I'd like to deploy it to a Windows 2012 server with IIS, not to Azure.
Visual Studio for Mac 2017 Community edition only has the option to publish to an Azure service:
What things on the remote server need to be configured prior to deployment? What are the step involved in the deployment?
I'd like to deploy it to a Windows 2012 server with IIS, not to Azure.
As you mentioned that Visual Studio for Mac 2017 Community only has publish to Azure option.
According to your description, my workaround is that you could use dotnet publish command to publish to a local folder.
I test it with Windows platform, you could try it on Mac. You are deploying to a remote server, you could zip up the files and move to the server. You also could refer to this blog to get more detail info.
dotnet publish webprojectName.csproj --output localpath
I am developing app in cross platform using xamarin.forms. I tried to take buid for ios by connecting mac agent from windows visual studio community 2017 using windows pro OS machine. But i cant connect machine and SSH fingerprint error. i need to know can connect mac via Visual studio community 2017 for take build or any restriction for IOS development. To resolve this, are we need to use Visual studio Enterprises 2017?? pls guide me to solve this issues.
Setup Details:
OS - Windows Pro
Tool - Windows Visual Studio Community 2017
Platform - Xamarin.Forms(Cross Platform)
Mac System - Advanced Version
I have a windows Application(C#) developed in Visual Studio 2015 on windows 10.
When i tried to install on windows XP and i get an error "The installer was interrupted before [Myapplication] could be installed.
You need to restart installer to try again"
I need help for creating the required setup file for Windows XP OS via VS 2015
I developed a Window Service which is running successfully(tested using Developer Command Prompt for VS 2015) on my local machine because I have Visual Studio 2015 installed. My machine is a development Server.
After successfully tested it on my machine, I tried to install the same process using installutil.exe.But, I think, this exe is not present on my Window Production server because VS 2015 is not installed on production server? I have IIS installed and my website is deployed there and working fine. I found that there is no Developer Command Prompt for VS 2015 on production server
Do I need any other way to install Window Server on my Production Server?
InstallUtil is a developer tool, so it is not present on most machines without Visual Studio. Besides creating a full blown MSI installer, you can implement a self-install that behaves like installutil. An alternative to implementing this yourself is to build your service using Topshelf because it includes this self-install functionality.
I want try to implementing this source, but it seems like my version of visual studio cant detect IIS express i installed from Microsoft.
I use visual studio 2013 and windows 7 32bit.
here is the picture.
You cannot use a 64-bit IIS Express on a 32-bit Windows 7 installation. Are you sure you have successfully installed 32-bit IIS Express?
Make sure you have downloaded iisexpress_x86_en-US.msi from the link you provided.