0

多数のプロジェクトを含むビジュアル スタジオ ソリューションがあり、そのうちのいくつかは .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 であると表示されます。また、明確にするために、いくつかのソリューションに対してこのプロセスを繰り返す必要があるため、手動で行うことは本当に望ましくないオプションです。

ありがとう

4

1 に答える 1

1

参考になりそうなリンクがあります。プロジェクト ファイルを解析してフレームワークのバージョンを取得するには、独自のコードを記述する必要があります。

<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 

もう 1 つのオプションは、ソリューション フォルダーにコマンド ラインを使用することです。MS DOS コマンドを使用します。

findstr "<TargetFrameworkVersion>" *.csproj

結果が画面に表示されます。

アップデート:

古いプロジェクトにはこの行が含まれていないためです。検索ファイルに行が含まれていない別のコマンドを使用できます。

findstr /v "<TargetFrameworkVersion>" *.csproj
于 2012-04-27T14:54:57.587 に答える