Microsoft .Net Micro Framework v3.0 launched!

微软于2008年10月28日正式发布了.Net Micro Framework SDK,该版本包含了许多新特性如触摸屏支持、FAT文件系统等,并且提供了对Visual Studio 2008的支持,这为.NET Micro Framework平台的大规模采用铺平了道路。

.Net Micro Framework SDK正式版终于在2008年1028日发布,具体的功能由于在beta版中已有体验,所以这里就不多说了。发布的具体情况,发布的盛况请参见:http://www.cmp-egevents.com/web/escb

SDK下载地址:

http://www.microsoft.com/downloads/details.aspx?FamilyId=9356ED6F-F1F0-43EF-B21A-4644DD089B4A&displaylang=en

官方网址:http://www.microsoft.com/netmf/default.mspx

开发团队bloghttp://blogs.msdn.com/netmfteam/

博客园MF小组http://space.cnblogs.com/group/MFSoft/

MVP刘洪峰的bloghttp://www.cnblogs.com/yefanqiu

----------------------------------------------------------------------------

What is so revolutionary?

Lot's of things changed in version 3.0. The major things are notoriously known from the beta version:

  • Interop
  • Touchscreen support
  • FAT filesystem
  • DPWS Tools
  • Wi-Fi
  • SSL
  • Serial port improvements
  • USB Device
  • Color fonts
  • Emulator enhancements

But what I like the most is the support for Visual Studio 2008 including Express editions. I believe this is great step forward to mass adoption of this amazing platform. Together with the new easier and cheap access the porting kit it will bring (hopefully) lot's of Micro Framework devices in every house hold.

Go for it!

Point your browser to http://www.microsoft.com/netmf/default.mspx and get everything you need to start with Micro Framework. SDK is free, Visual Studio is free and so many cool and inexpensive development hardware out there just calls for your action.

enjoy!

 

虽然给定引用中未提及错误代码 0xe0434352 的解决办法,但可以参考类似问题的解决思路。在安装 VS2019 企业版时出现“0X80070422 无法启动服务,Kernelbase.dll 故障”,最终发现是.net framework 出现问题,通过安装.net4.7、.net4.8 解决了问题[^1]。 对于错误代码 0xe0434352,此错误通常与.NET Framework 异常有关。可以尝试以下步骤来解决: 1. **更新.NET Framework**:可以尝试安装最新版本的.NET Framework,如.NET 4.8 或更高版本。 2. **修复.NET Framework**:使用系统自带的修复工具或者第三方工具来修复已安装的.NET Framework3. **检查系统更新**:确保操作系统已经安装了所有可用的更新,包括 Windows Update。 4. **清理临时文件**:删除系统临时文件夹中的文件,这些文件可能会影响安装程序的正常运行。 示例代码为检查并安装.NET Framework 4.8 的 PowerShell 脚本: ```powershell # 检查是否已安装.NET Framework 4.8 $dotnet48 = Get-ItemProperty HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full -ErrorAction SilentlyContinue if ($dotnet48 -and $dotnet48.Release -ge 528040) { Write-Host ".NET Framework 4.8 已经安装。" } else { Write-Host "正在下载并安装.NET Framework 4.8..." $url = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/3.1.426/dotnet-sdk-3.1.426-win-x64.exe" $output = "C:\Temp\dotnet-sdk-3.1.426-win-x64.exe" Invoke-WebRequest -Uri $url -OutFile $output Start-Process -FilePath $output -ArgumentList "/install /quiet /norestart" -Wait Write-Host ".NET Framework 4.8 安装完成。" } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值