visual-studio-mac

Can I use mono64 with Visual Studio for Mac?

。_饼干妹妹 提交于 2019-12-02 05:59:41
问题 I'm new to Mono development (but not .NET development) - got as far as downloading Visual Studio for Mac and trying to run a sample solution from Alea GPU. It complains that it needs mono64, but I see no option for selecting 64 bit architecture like I would in Windows, and Googling the issue has not turned up an answer I can make sense of. Can I use mono64 in VS for Mac and if so, how? 回答1: Since you are running within VS4M, you need to set the architecture of the run configuration that you

Is it possible to develop ASP.NET MVC applications in Visual Studio for Mac?

。_饼干妹妹 提交于 2019-12-01 03:23:28
问题 Since I am planning to buy a new MacBook Pro (2017) and currently working on a Windows 10-device on a ASP.NET MVC (Not ASP.NET Core MVC) project for my internship, I was wondering if it is possible to continue developing the same project in Visual Studio for Mac. To put it in other words: Is it possible to develop ASP.NET MVC applications in Visual Studio for Mac? I tried to Google this, but I could only find ASP.NET Core MVC projects being discussed for VS for Mac. The current project is NOT

Set Multiple Startup Projects in Visual Studio for Mac?

99封情书 提交于 2019-11-30 18:04:28
Is it possible/how do I set multiple start up projects in Visual Studio for Mac? It is very easy and common to do it in VS for Windows ( https://msdn.microsoft.com/en-us/library/ms165413.aspx ) but struggling to find the option on VS for Mac in the application and online. You can do this by creating a run configuration for the solution. Select the solution in the Solution window and right click it and select Options. Select Run - Configurations. Click the New button and specify a name for the configuration. Expand the Configurations on the left hand side and select the new run configuration

Apple developer account teams not showing up on VS Mac

只谈情不闲聊 提交于 2019-11-30 15:41:26
问题 When I log in my apple id account on Visual Studio Mac Community 2017, teams doesn't show up. Do I have to have a paid apple developer account to use this? There are no team displayed, and the button "View Details..." doesn't do anything. Also, the icon on the left side of the account is a smiley face icon and it should be a user icon in the official tutorial. Screenshot: While it works perfectly on Xcode: Environments: - Xcode commandline installed. - Fastlane installed. What troubleshooting

visual studio mac for mac missing of identity class

北城余情 提交于 2019-11-30 07:31:19
Hi i downloaded visual studio for mac 2017 community version. I created a default MVC Core 2.0 project and i noticed that there is missing class of Account controllers where it used to have register and account other handler functions. i created the same project in windows .In windows i can see that there is identity class and controller created. how do i generate this authentication class in visual studio for mac Core 2.0? I tried creating the default project in windows and copy to mac and it works!!! After i change the connection string to the server.Identity framework works fine in mac. But

How to add reference to assembly in visual studio mac?

喜你入骨 提交于 2019-11-29 14:18:22
I am sorry. I am newbie in C#. I use Visual Studio Mac . I want to try to connect mysql database. I have added mysql package. When I run, I get error. The error is : adding a reference to assembly ‘System.Data, Version-4.0.0.0, Culture=neutral, PublicKeyToken My solution in Visual Studio for Mac 7.3 Preview was to right click on the "Dependencies" node for the project and click "Edit References..." In Solution Explorer, right click (two finger tap on mousepad for Mac) the 'Dependancies' folder under the Project (current project where you are seeing this error). Click 'Edit References' Select

visual studio mac for mac missing of identity class

你说的曾经没有我的故事 提交于 2019-11-29 10:35:27
问题 Hi i downloaded visual studio for mac 2017 community version. I created a default MVC Core 2.0 project and i noticed that there is missing class of Account controllers where it used to have register and account other handler functions. i created the same project in windows .In windows i can see that there is identity class and controller created. how do i generate this authentication class in visual studio for mac Core 2.0? I tried creating the default project in windows and copy to mac and

Problems connecting to local MySQL server

隐身守侯 提交于 2019-11-28 13:14:27
I have problems connecting to a local MySQL database. I made sure the server is running and i can connect to the server using the user and password from the connection string and create databases with the terminal. I'm using visual studio community on a mac and MySQL 8.0.16. Example: Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ReadSQL { class Program { static void Main(string[] args) { DataAccess dataAccess = new DataAccess(); dataAccess.GetTask(); } } } DataAccess.cs using System; using System.Collections.Generic; using

How to add reference to assembly in visual studio mac?

情到浓时终转凉″ 提交于 2019-11-28 08:02:29
问题 I am sorry. I am newbie in C#. I use Visual Studio Mac . I want to try to connect mysql database. I have added mysql package. When I run, I get error. The error is : adding a reference to assembly ‘System.Data, Version-4.0.0.0, Culture=neutral, PublicKeyToken 回答1: My solution in Visual Studio for Mac 7.3 Preview was to right click on the "Dependencies" node for the project and click "Edit References..." 回答2: In Solution Explorer, right click (two finger tap on mousepad for Mac) the

External Terminal / Debug outside the IDE

こ雲淡風輕ζ 提交于 2019-11-27 09:46:26
I'm starting to use Xamarin Studio, and migrating from VS to it, but when I try to run a console application (the unique one loaded at the moment), fails and throws an exception in Console.Clear() (Supposing I can't do that in an integrated debugger), then i thought that one way to solve it was by compiling it and running it, like Visual Studio does, and Debug the application outside the IDE, but I can't figure out how. Could someone tell me how to solve this problem? Thanks. EDIT: For any reason, it runs in the embedded window when selecting Release, but it can't read input, so it gets stuck.