简体   繁体   English

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

[英]Unsupported VB Version for this Project (SSDT)

I create project on VB 2017 and SSSDT 15.6.0 and close the project but when I reopen the projects then I'm getting error for Unsupported project please any one help me where I'm wrong 我在VB 2017和SSSDT 15.6.0上创建了项目并关闭了该项目,但是当我重新打开这些项目时,出现了我不支持的项目的错误,请任何人在我错的地方帮助我

Project in SSIS and SSRS SSIS和SSRS中的项目

please see the image below Unsupported error 请参见下面的图片不支持的错误

Unload your project by right-clicking on it. 右键单击以卸载项目。 Then edit the proj file and make sure that each " PropertyGroup " section has: 然后编辑proj文件,并确保每个“ PropertyGroup ”部分都具有:

<Platform>Win32</Platform>

Example: 例:

  <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>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM