最近用VS2008开发Windows Mobile程序,使用C#、.NET Compact Framework,发现项目生成速度比较慢。用VS2008打开项目后,开始一段时间生成速度还能忍受,时间一长,编译速度巨慢,最慢达到5分钟之久,实在无法忍受。
修改文件C:\Windows\Microsoft.NET\Framework\v3.5\Microsoft.CompactFramework.Common.targets中
<Target
Name="PlatformVerificationTask" Condition="‘$(SkipPlatformVerification)‘ == ‘true‘" >
<PlatformVerificationTask
PlatformFamilyName="$(PlatformFamilyName)"
PlatformID="$(PlatformID)"
SourceAssembly="@(IntermediateAssembly)"
ReferencePath="@(ReferencePath)"
TreatWarningsAsErrors="$(TreatWarningsAsErrors)"
PlatformVersion="$(TargetFrameworkVersion)"/>
</Target>
原文地址:https://www.cnblogs.com/andychou/p/10969957.html
时间: 2024-10-22 09:23:35