此项目 (SSDT) 不支持 VB 版本

Unsupported VB Version for this Project (SSDT)

我在 VB 2017 和 SSSDT 15.6.0 上创建了项目并关闭了项目,但是当我重新打开项目时,我收到了不支持项目的错误,请任何人帮助我我错了

SSIS 和 SSRS 中的项目

请看下图Unsupported error

右键单击项目以卸载它。然后编辑 proj 文件并确保每个“PropertyGroup”部分具有:

<Platform>Win32</Platform>

示例:

  <PropertyGroup Condition=" '$(Configuration)' == 'DebugLocal' ">
    <FullPath>DebugLocal</FullPath>
    <OutputPath>bin\DebugLocal</OutputPath>
    <ErrorLevel>2</ErrorLevel>
    <OverwriteDatasets>False</OverwriteDatasets>
    <OverwriteDataSources>False</OverwriteDataSources>
    <TargetServerVersion>SSRS2008</TargetServerVersion>
    <Platform>Win32</Platform>
    <TargetReportFolder>Report Project3</TargetReportFolder>
    <TargetDatasourceFolder>Data Sources</TargetDatasourceFolder>
  </PropertyGroup>