Need Profile for Mono 3.0 on Windows(需要 Windows 上 Mono 3.0 的配置文件)
问题描述
Is there a tutorial that tells how to write a profile for mono 3.0 so that I can use it with Microsoft Visual studio 2010 ? The reason behind the same is that my application makes use of a Binding List and when I try to run in Mono , I get this error : ** (WindowsFormsApplication2.exe:608): WARNING **: The class System.ComponentModel.BindingList`1 could not be loaded, used in System, Version=4.0.0.0,
or in case a profile is already written , can you please share the same
I created my own 4.5 Profile for Mono 3.0.1 Beta for VS 2012 on a Windows 8 64-bit machine based on this.
- Create a folder called Mono
- Inside this folder, create another folder called RedistList
- Copy C:Program Files (x86)Mono-3.0.1libmono4.5 into folder Mono
- Inside folder RedistList, create a file called FrameworkList.xml
- Paste the following into file FrameworkList.xml:
<?xml version="1.0" encoding="utf-8"?>
<FileList Redist="Mono_3.0.1" Name="Mono 3.0.1 Profile" RuntimeVersion="4.5" ToolsVersion="4.5"></FileList>
- Navigate to C:Program Files (x86)Reference AssembliesMicrosoftFramework .NETFrameworkv4.5 and create a folder called Profile
- Copy your folder Mono into folder Profile
Add the following to registry to stop Visual Studio asking for installation of this profile:
HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoft.NETFrameworkv4.0.30319SKUs.NETFramework,Version=v4.5,Profile=Mono
Now you should be able to select and compile against this profile. This steps might be slightly different on 32-bit machines (see link at top).
这篇关于需要 Windows 上 Mono 3.0 的配置文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:需要 Windows 上 Mono 3.0 的配置文件


基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01