我在VB 2017和SSSDT 15.6.0上创建项目并关闭项目但是当我重新打开项目时,我收到了不支持项目的错误,请帮助我,我错了
SSIS和SSRS项目
请参阅下面的图片Unsupported error
答案 0 :(得分:0)
右键单击项目即可卸载项目。然后编辑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>