搜尋此網誌

2011年9月29日 星期四

讓VS2010可以使用VS2008開啟的方法

轉貼自http://blog.csdn.net/wyzxk888/article/details/6331950

使用此的原由:
使用同事建立好的widow form專案時發現
目標Framework沒有低階得選項只有4.0可以選
導致無法資料跑時無法正常執行。。。。


.sln檔

前兩行:
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010

改為:
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008

.csproj檔

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0 " DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

改為:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5 " DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">


.csproj.user檔

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0 " xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

改為:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5 " xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

專案開啟後
請先建置
修改你的目標Framework
假如你原始專案中App.config中有建立supportedRuntime
可能也要更著修改(我是直接把App.config砍了@@)
以上是作者本身碰到的問題~這裡記錄一下~





沒有留言:

張貼留言