我有一个Visual Studio解决方案,其中包含大量项目,其中一些针对.NET v2.0,其中一些针对v3.5。
我知道我可以依次点击每个项目来查看它所针对的版本,但这将永远需要。
有谁知道更快捷的方法我可以确定哪些项目的目标是v2.0以及哪个目标是v3.5?
编辑:
我希望能够使用TargetFrameworkVersion节点来确定版本,但是某些项目文件没有此节点,例如。
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E11A268C-9F62-4970-9338-129C35AD2354}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BusinessEntities</RootNamespace>
<AssemblyName>Business Entities</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="SomeClass.cs" />
<Compile Include="SomeOtherClass.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
...但如果我右键单击VS中的项目,它会说目标版本是.NET v2.0。另外,为了清楚起见,我需要为许多解决方案重复这个过程,因此以手动方式进行操作是一个非常不合适的选择。
由于
答案 0 :(得分:1)
link可能会有所帮助。 您必须编写自己的代码来解析项目文件以获得框架版本。
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
另一个选项是使用命令行作为解决方案文件夹。 使用MS DOS命令:
findstr "<TargetFrameworkVersion>" *.csproj
结果将显示在屏幕上。
<强>更新强>
因为较旧的程序不包含此行。我们可以使用另一个命令,搜索文件不包含该行。
findstr /v "<TargetFrameworkVersion>" *.csproj