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
Project in SSIS and SSRS
please see the image belowUnsupported error
Unload your project by right-clicking on it. Then edit the proj file and make sure that each "PropertyGroup" section has:
<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>