monodevelop

Gtk# in monodevelop not working anymore after upgrading to ubuntu 11.10 unity

南笙酒味 提交于 2019-12-23 12:59:36
问题 I had some monodevelop programs with a GTK# user interface running smoothly in ubuntu 11.04 without unity. I have upgraded to ubuntu 11.10 with unity. Now I get the following error: "The type or namespace name 'Gtk' could not be found. Are you missing an assembly reference?". And indeed in my references the references atk-sharp, gdk-sharp, glade-sharp, glid-sharp, stk-sharp and pango-sharp are colored red and I can't re-add them. If I search in the software to install at gtk-sharp then it

.NET 4.6 - monodevelop on linux

回眸只為那壹抹淺笑 提交于 2019-12-23 12:56:34
问题 I have mono installed from beta channel (http://www.mono-project.com/docs/getting-started/install/linux/) - version 4.0.4 I can't compile Visual Studio 2015 project. In project options under Build->General the Target framework is .NETFramework 4.6 (Not installed). Compilation errors: Project settings: 回答1: You will have to downgrade to .NET 4.5 profile if you do want to target both .NET and Mono, or you help Mono out by filling the gaps between 4.5 and 4.6, or you simply wait till someone

How do you get Monodevelop back to using English for its language

≯℡__Kan透↙ 提交于 2019-12-23 12:45:35
问题 I have no idea how it happened, but suddenly when I launch Monodevelop, the menus appear in a language other than English. I have tried reinstalling the application as well as manually removing artifacts in other directories under Library. No luck. After a reinstall, it loads in another language still. 回答1: You can change the Language under the options/preferences dialog. For me the shortcut keystroke is 'command + comma' Or it is the third menu entry under MonoDevelop menu. Select the first

how to skip the strong name verification for delay signed assembilies on Mono and Visual studio 2010(C#4.0)?

谁都会走 提交于 2019-12-23 11:44:16
问题 how to skip the strong name verification for delay signed assembilies on Mono and Visual studio 2010(C#4.0)? Thanks & Regards, P.SARAVANAN 回答1: You have to pass the -Vr command-line option to the strong name tool ( sn.exe ): sn -Vr yourAssembly.dll Be careful though: this should only be done on development machines because of security considerations. Quoth the documentation: Use this option only during development. Adding an assembly to the skip verification list creates a security

MonoDevelop - code window colour scheme

眉间皱痕 提交于 2019-12-23 09:56:53
问题 Is there a way to customise the code window colour scheme in MonoDevelop? I would like something like Son Of Obsidian if that is possible. 回答1: Yes. Go to the MonoDevelop syntax highlighting options panel and press the "New" button: Enter a name and description for your new colour scheme, and pick the existing colour scheme on which you would like to base it: Select your new colour scheme, and press the "Edit" button: Now you can edit the colours of your new scheme: Note that you can export

MonoDevelop - code window colour scheme

回眸只為那壹抹淺笑 提交于 2019-12-23 09:55:25
问题 Is there a way to customise the code window colour scheme in MonoDevelop? I would like something like Son Of Obsidian if that is possible. 回答1: Yes. Go to the MonoDevelop syntax highlighting options panel and press the "New" button: Enter a name and description for your new colour scheme, and pick the existing colour scheme on which you would like to base it: Select your new colour scheme, and press the "Edit" button: Now you can edit the colours of your new scheme: Note that you can export

mono The view 'Index' or its master was not found

半腔热情 提交于 2019-12-23 09:34:00
问题 by this tutorial http://www.davidloo.com/?p=479 I installed monodevelop and created ASP.NET MVC project. but when I run F5 so I have this output: System.InvalidOperationException The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched: ~/Views/Home/Index.aspx ~/Views/Home/Index.ascx ~/Views/Shared/Index.aspx ~/Views/Shared/Index.ascx ~/Views/Home/Index.cshtml ~/Views/Home/Index.vbhtml ~/Views/Shared/Index.cshtml ~

Unity debugging for android devices

别来无恙 提交于 2019-12-23 07:12:04
问题 I'm having a hard time getting breakpoint debugging working for unity with and android device. I've tried with both visual studio code and monodevelop. In android: I have successfully done all the steps outlined here for getting android connected over wifi in tcpip mode: https://docs.unity3d.com/Manual/AttachingMonoDevelopDebuggerToAnAndroidDevice.html In unity In build settings I have "development build" and "script debugging" checked. When I build and run, it programs my device just fine

Call method on UI thread from background in .net 2.0

我的未来我决定 提交于 2019-12-23 04:53:19
问题 I am using MonoDevelop (.net 2.0) to develop a iOS and Android app. I use BeginGetResponse and EndGetResponse to asynchronously do a webrequest in a background thread. IAsyncResult result = request.BeginGetResponse(new AsyncCallback(onLogin), state); However, the callback onLogin does seem to still be running on a background thread, no allowing me to interact with the UI. How do I solve this? Can see that there are Android and iOS specific solutions but want a cross-platform solution. Edit:

open a .csproj with monodevelop

血红的双手。 提交于 2019-12-22 17:15:34
问题 I've downloaded a framework with samples in .csproj project format. How can I open them in MonoDevelop? I'm interested in using some classes in that framework. It has a folder structure like: Accord.Statistics.Models and a main folder Accord with a subfolder Statistics with a subfolder Models with a file ModelFoo.cs I want to use that file (that begin with namespace Accord.Statistics.Models ) in a MonoDevelop Solution under Ubuntu. If I copy the folder or single files inside my new Solution I