mono

Where can I get Mono.Cecil.Pdb.dll?

会有一股神秘感。 提交于 2019-12-23 10:55:12
问题 I'm trying to write a IL Weaver with Mono.Cecil, and for it to remain debugable in VS2010, I need the PdbReaderProvider class, or some similar implementation of ISymbolProvider. I've downloaded the latest Mono dlls from http://mono.ximian.com/daily/, but in the zip there is no Mono.Cecil.Pdb.dll. I've downloaded the source code from https://github.com/jbevain/cecil/tree/master/Mono.Cecil but I can't seem to be able to get that particular project compile under .net 4. Could somebody help me

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 ~

How to run Mstests on a Mac?

ぐ巨炮叔叔 提交于 2019-12-23 09:28:20
问题 I have a need to write some mstests and run these tests on a Mac. The binaries for the source code being tested are already up and running on Mac. To run test automation written in Visual studio, do I follow the same process? Any pointers on how to get started with running these test cases using Mono on a Mac ? 回答1: I know this issue is old but I came across it while searching for solutions for running MSTest on my mac. I'll investigate the above but also worth noting that MSTest support on

Using Mono on Windows

被刻印的时光 ゝ 提交于 2019-12-23 09:05:42
问题 I know it sounds stupid but: I've found this application written on Mono and it is open source. While peeking at the source code I've found this two "using" directive that stoped me: using Gdk; using Mono.Unix; I guess they're Mono specific libraries. So, it is possible to run Mono under Windows? ( perhaps Visual Studio express edition ? ) I'm trying to learn C# I see there is a Windows branch of the app, but it is empty. BTW: Is it Mono thought for cross platform in first place? EDIT I've

Build failures with Mono 5.14.0.177, msbuild 15.0, nuget 4.7.1 on Travis CI, but not reproducible in VirtualBox

半腔热情 提交于 2019-12-23 08:53:58
问题 I'm getting build failures with Mono 5.14.0.177, msbuild 15.0, nuget 4.7.1 on Travis CI for both Xenial and Trusty Ubuntu, but not reproducible in VirtualBox, Ubuntu Xenial. After running: mono tools/nuget/nuget.exe restore pythonnet.sln -o packages the error message is: Currently running NuGet.exe 4.1.0. Updating NuGet.exe to 4.7.1. Update successful. MSBuild auto-detection: using msbuild version '15.0' from '/usr/lib/mono/msbuild/15.0/bin'. Error parsing solution file at /home/travis/build

Is there still any development on SIMD in Mono?

丶灬走出姿态 提交于 2019-12-23 07:46:03
问题 I want to know if there has been/is any development on Mono.SIMD (or SIMD-support in general inside Mono) ever since it came out 5(!) years ago. I personally think this was a great step in improving speed for c#. However, I've used it for some time now and I'm feeling that Mono.SIMD is falling behind, as lots of functions are missing. Some of the problems i'm facing include: The lack of a dot product, which can be implemented in 1 operation ever since SSE4.1 (which came out in 2006 and is now

Mono on VS2010?

≯℡__Kan透↙ 提交于 2019-12-23 07:43:55
问题 I want to start doing a cross platform project that will run on Linux and Windows. I went to mono's website to check things out as I heard mono allows me to run c# on Linux, but when I arrived there http://mono-project.com/Main_Page I was a bit confused. The download page allows me to download it just fine but in order to program mono on VS2010 I need to pay for mono-tools or are there any alternatives within VS2010 ? In short what do I need to be able to use mono with VS2010 and what are the

GTK# mouse event in drawing area

瘦欲@ 提交于 2019-12-23 07:28:06
问题 I have a DrawingArea which I would like to received mouse events. From the tutorials I have found that the KeyPressEvent will also catch mouse events. However for the following code the handler is never called. static void Main () { Application.Init (); Gtk.Window w = new Gtk.Window (""); DrawingArea a = new CairoGraphic (); a.KeyPressEvent += KeyPressHandler; w.Add(a); w.Resize (500, 500); w.DeleteEvent += close_window; w.ShowAll (); Application.Run (); } private static void KeyPressHandler

Does Dapper work on Mono?

喜欢而已 提交于 2019-12-23 07:12:22
问题 We're thinking about moving over to Mono and I see that Dapper works with MySql. However this is with a ADO.NET provider. Does Mono/Linux have a MySql ADO.NET provider and does that work with Dapper? Eventually we are planning on moving our current site from MySql to PostgreSql and I'm also wondering the same question, but also interms of PostrgreSql, Mono and Dapper on linux? 回答1: I'm using Dapper with the official MySqlConnector on an OpenSuse machine (+ mono) and it works great. 回答2: Why

Can't get Microsoft.VisualBasic.dll for Mono 2.10

丶灬走出姿态 提交于 2019-12-23 05:49:13
问题 I've been trying to port a .NET library built on/for Windows to Ubuntu 11.04 using Mono. The library uses .NET 4.0 so the version of mono (2.6.7) that is standard with Ubuntu 11.04 doesn't cut it. Specifically, I'm trying to use Microsoft.VisualBasic.Devices.Computer.Info.TotalPhysicalMemory. I've searched high and low for packages or parallel build scripts that install Microsoft.VisualBasic.dll, but none of them do. Ideally I'd like to find a way to get the best of both worlds, Mono with