Why does Microsoft Visual Studio 2008 automatically change the Schema for an SSRS report from 2008 to 2010? When certain features are added (which are all 2008 compatible) the Schema is automatically changed from:
<Reportxmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
to:
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
Is there a way to force the Schema to remain as the 2008 version?
Please note that the TargetServerVersoin project property is set to SQL Server 2008 R2.