0x80131700 .NET Micro Framework 上的构建错误

发布于 2024-10-05 12:17:51 字数 158 浏览 1 评论 0原文

使用 .NET Micro Framework 项目时,无论是否处于模拟器模式,都会出现以下构建错误。

0x80131700

或者

error MMP0000: 0x80131700

The following build error occurs when using .NET Micro Framework project, whether in emulator mode or not.

0x80131700

or

error MMP0000: 0x80131700

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十级心震 2024-10-12 12:17:51

通过嵌入式文件的解决方案CodePlex 上提供(单击此处),也可以包含有关框架的建议。

注意:在电子课上遇到这个问题,Google 搜索了上面的答案,在这里发布解决方案供人们查找,以便存档和方便将来参考。


描述
在仅安装 .NET Framework 4.0 的计算机(例如,干净的 Windows XP 模式虚拟机上的 Visual Studio 2010)上构建 .NET Micro Framework 项目期间,MetaDataProcessor 失败并出现上述错误。要解决此问题,请将附加的 MetaDataProcessor.exe.config 文件复制到 .exe 文件所在的目录中(默认为 %ProgramFiles%\Microsoft .NET Micro Framework\v4.1\Tools);或者安装 .NET Framework 2.0+ (3.5 SP1)。

文件附件 - MetaDataProcessor.exe.config 内容:

<?xml version="1.0" encoding="utf-8" ?> 
<configuration>     
    <startup useLegacyV2RuntimeActivationPolicy="true">         
        <supportedRuntime version="v4.0.30319"/>    
    </startup>  
</configuration>

Solution by way of a drop-in file available on CodePlex (click here), also contains suggestions about frameworks.

Note: Ran into this problem during an electronics class, Googled the above answer, posting solution here for people to find, for archive and easy future reference.


Description
MetaDataProcessor fails with the above error during the build of .NET Micro Framework project on a computer where only .NET Framework 4.0 is installed (e.g. Visual Studio 2010 on a clean Windows XP Mode virtual machine). To workaround the issue copy the attached MetaDataProcessor.exe.config file into a directory where the .exe file is located (default %ProgramFiles%\Microsoft .NET Micro Framework\v4.1\Tools); alternatively install .NET Framework 2.0+ (3.5 SP1).

File Attachment - MetaDataProcessor.exe.config contents:

<?xml version="1.0" encoding="utf-8" ?> 
<configuration>     
    <startup useLegacyV2RuntimeActivationPolicy="true">         
        <supportedRuntime version="v4.0.30319"/>    
    </startup>  
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文