This is a migrated thread and some comments may be shown as answers.

Upgrade from VS2008 - VS2010

20 Answers 363 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Hessner
Top achievements
Rank 2
Hessner asked on 17 Apr 2010, 10:45 AM
Hi,

Just upgraded from VS2008 to VS2010.

My target was the 3.5 framework and I got 5 projects in the solution.

The Mynamespace.ORM project could not be seen by other projects, and therefore I could not compile.

Found out that on the Mynamespace.ORM project, property page "Enhancing" was set to true,-
therefore it always compiled against the 4.0 framework - target was defined as 3.5!

Tried to set "Enhancing" to false. Then I could compile, but the site failed to run.

Now I target 4.0 framwork on all my projects. Solution do compile and my app. are up and running.

So now you know, if you find ourself in that particular situation.

20 Answers, 1 is accepted

Sort by
0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 20 Apr 2010, 03:32 PM
I'm having the same issue, however I can't enable 4.0 on my projects yet :/


0
Alexander
Telerik team
answered on 20 Apr 2010, 06:25 PM
Hi guys,

This is a known issue of the OpenAccess' enhancer that we are currently working on. The workaround at the moment is to define a postbuild step that calls the enhancer. To achieve that, first disable the Enhancing property of the project. Then right-click on the project and open its Properties window (Alt+Enter), switch to the Build Events tab and specify the following command as a post-build step:
C:\Program Files\Telerik\OpenAccess ORM\sdk\venhance.exe -assembly:$(TargetFileName)
Or this one if are working on a x64 machine:
C:\Program Files (x86)\Telerik\OpenAccess ORM\sdk\venhance.exe -assembly:$(TargetFileName)
Hope that helps.

Best wishes,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 20 Apr 2010, 06:33 PM
Ok, one step closer...forgot the x86 part in the path

However I now get this

Error   15   The command "C:\Program Files (x86)\Telerik\OpenAccess ORM\sdk\venhance.exe -assembly:RTODataLayer.dll" exited with code 9009.

0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 20 Apr 2010, 07:41 PM
Now my project wont even run

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: Telerik.OpenAccess.RT.sql.SQLException: Invalid object name 'voa_keygen'.

Source Error:

Line 110:            Database db = Database();
Line 111:
Line 112:            IObjectScope newScope = db.GetObjectScope();
Line 113:            return newScope;
Line 114:        }

Source File: d:\websites\ca\medportal\postgrad\App_Code\RTO\RTOObjectScopeProvider.cs    Line: 112

Stack Trace:

[SQLException: Invalid object name 'voa_keygen'.]

0
Alexander
Telerik team
answered on 21 Apr 2010, 08:01 AM
Hi Steve,

Sorry for that, the venhance.exe path should be actually enclosed with quotes to escape the space characters. So the right command would be:

"C:\Program Files (x86)\Telerik\OpenAccess ORM\sdk\venhance.exe" -assembly:$(TargetFileName)
If the second error does not go away with this command, please send us another ticket where we can investigate it further.

All the best,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
answered on 21 Apr 2010, 01:46 PM
Fixed!

Thanks, finally I can stop using 2008 :)
0
Jose
Top achievements
Rank 2
answered on 27 Apr 2010, 08:04 PM
Hi.

I was finally able to run the application following your instructions but now I get this error:

Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

The post-build command I'm using is:

"C:\Program Files (x86)\Telerik\OpenAccess ORM\sdk\venhance.exe" -assembly:$(TargetFileName) 

Any ideas?
Thanks.
Jose

0
Jose
Top achievements
Rank 2
answered on 27 Apr 2010, 08:08 PM
I forgot something else.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Configuration.ConfigurationErrorsException: Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

Source Error:

Line 118:			Database db = Database();
Line 119:
Line 120: IObjectScope newScope = db.GetObjectScope();Line 121:			return newScope;
Line 122:		}

0
Alexander
Telerik team
answered on 28 Apr 2010, 08:34 AM
Hi Jose,

Please append the following option to the command:
-verboseMode:4
This way you will get more messages in the output window that could lead us to the problem.
You can also try upgrading to the latest internal build (2010.1.414.3) if you are not already using it.

Greetings,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jose
Top achievements
Rank 2
answered on 28 Apr 2010, 03:40 PM
Hey Alexander.

Here is the result after I added the parameter.



 

Server Error in '/BikeTheSitesReservation' Application.

Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Configuration.ConfigurationErrorsException: Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

Source Error:

Line 118:			Database db = Database();
Line 119:
Line 120: IObjectScope newScope = db.GetObjectScope();Line 121:			return newScope;
Line 122:		}

Source File: c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\App_Code\BTSScopeProvider.cs    Line: 120

Stack Trace:

[ConfigurationErrorsException: Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.]
   Telerik.OpenAccess.RT.DatabaseAdapter.AssertAtLeastOneEnhancedAssembly(DataObjectsRoot[] r) +181
   Telerik.OpenAccess.RT.DatabaseAdapter.AssertPersistenceManagerFactory(String usr, String password, Boolean open) +1526
   Telerik.OpenAccess.RT.DatabaseAdapter.GetObjectScope(TransactionProvider provider) +70
   Telerik.OpenAccess.RT.DatabaseAdapter.Telerik.OpenAccess.SPI.IDatabaseAdapter.GetObjectScope() +37
   Telerik.OpenAccess.Database.GetObjectScope() +34
   BikeTheSitesReservation.BTSScopeProvider.GetNewObjectScope() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\App_Code\BTSScopeProvider.cs:120
   Modules_UserControls_Availability.GetLocations() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:66
   Modules_UserControls_Availability.Initialize() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:58
   Modules_UserControls_Availability.Page_Load(Object sender, EventArgs e) in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:51
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +50
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6741
   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +242
   System.Web.UI.Page.ProcessRequest() +80
   System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21
   System.Web.UI.Page.ProcessRequest(HttpContext context) +49
   ASP.reservation_aspx.ProcessRequest(HttpContext context) in c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\bikethesitesreservation\b396c9bf\205024f6\App_Web_jak7hm8e.2.cs:0
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75


Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927
0
Jose
Top achievements
Rank 2
answered on 28 Apr 2010, 07:56 PM
Alexander, I upgraded it to the latest nightly build as you suggested but still the same error.



 

Server Error in '/BikeTheSitesReservation' Application.

Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Configuration.ConfigurationErrorsException: Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.

Source Error:

Line 118:			Database db = Database();
Line 119:
Line 120: IObjectScope newScope = db.GetObjectScope();Line 121:			return newScope;
Line 122:		}

Source File: c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\App_Code\BTSScopeProvider.cs    Line: 120

Stack Trace:

[ConfigurationErrorsException: Telerik.OpenAccess: No enhanced assembly has been found for meta-data construction. This may be caused by a missing app.config file (use app.config as embedded resource then) or by an insufficient references section in the configuration file (add the referenced enhanced assemblies there too) or by a wrong enhancement setting; please check your configuration.]
   Telerik.OpenAccess.RT.DatabaseAdapter.AssertAtLeastOneEnhancedAssembly(DataObjectsRoot[] r) +181
   Telerik.OpenAccess.RT.DatabaseAdapter.AssertPersistenceManagerFactory(String usr, String password, Boolean open) +1526
   Telerik.OpenAccess.RT.DatabaseAdapter.GetObjectScope(TransactionProvider provider) +70
   Telerik.OpenAccess.RT.DatabaseAdapter.Telerik.OpenAccess.SPI.IDatabaseAdapter.GetObjectScope() +37
   Telerik.OpenAccess.Database.GetObjectScope() +34
   BikeTheSitesReservation.BTSScopeProvider.GetNewObjectScope() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\App_Code\BTSScopeProvider.cs:120
   Modules_UserControls_Availability.GetLocations() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:66
   Modules_UserControls_Availability.Initialize() in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:58
   Modules_UserControls_Availability.Page_Load(Object sender, EventArgs e) in c:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx.cs:51
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +50
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +6741
   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +242
   System.Web.UI.Page.ProcessRequest() +80
   System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21
   System.Web.UI.Page.ProcessRequest(HttpContext context) +49
   ASP.reservation_aspx.ProcessRequest(HttpContext context) in c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\bikethesitesreservation\b396c9bf\205024f6\App_Web_zonlfiqt.2.cs:0
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75


Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927
0
Mikael Kleinwort
Top achievements
Rank 1
answered on 28 Apr 2010, 10:59 PM
Hello Telerik,

thank you for the work-arounf. I have the same issue and your fix

"C:\Program Files (x86)\Telerik\OpenAccess ORM\sdk\venhance.exe" -assembly:$(TargetFileName)

works for me. Great.

Regards, Mikael
0
Alexander
Telerik team
answered on 29 Apr 2010, 09:10 AM
Hi Jose,

Sorry, maybe I did not express myself clear enough. My idea was to set this option in order to get more messages from the enhancer in the Output window of Visual Studio. You can open that window by pressing Ctrl + W + O or from the View -> Output menu. While you are rebuilding the solution afterwards, the enhancer will write some messages to that window, probably one of them will be an error that says why the assembly cannot be enhanced. Please paste here these output messages so we can see the error.

Greetings,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jose
Top achievements
Rank 2
answered on 29 Apr 2010, 08:35 PM
Hi Alexander.

Here is the result from the output window:


------ Rebuild All started: Project: CSW.AuthorizeNET, Configuration: Debug Any CPU ------
  CSW.AuthorizeNET -> C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\CSW.AuthorizeNET\bin\Debug\CSW.AuthorizeNET.dll
------ Rebuild All started: Project: BikeTheSitesData, Configuration: Debug Any CPU ------
  BikeTheSitesData -> C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll
  Telerik OpenAccess Enhancer, Version 2010.1.414.3
  Copyright (C) 1996-2010 Telerik
  Enhancing C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll ...
  Check existence of referenced assemblies...
  Checking referenced assemblies...done.
  Copying file (Source=C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll, Target=C:\Users\jrguay\AppData\Local\Temp\_ptil_5472\BikeTheSitesData.dll):
    Deleting Target: C:\Users\jrguay\AppData\Local\Temp\_ptil_5472\BikeTheSitesData.dll...deleted.
    Copying Source: C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll...copied.
  Copying file (Source=C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.pdb, Target=C:\Users\jrguay\AppData\Local\Temp\_ptil_5472\BikeTheSitesData.pdb):
    Deleting Target: C:\Users\jrguay\AppData\Local\Temp\_ptil_5472\BikeTheSitesData.pdb...deleted.
    Copying Source: C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.pdb...copied.
  Deleting file (C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll):
    C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll...deleted.
  Deleting file (C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.pdb):
    C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.pdb...deleted.
  Enhanced class BikeTheSitesData.WebSchedule
  Enhanced class BikeTheSitesData.Template
  Enhanced class BikeTheSitesData.AccountClass
  Enhanced class BikeTheSitesData.Rider
  Enhanced class BikeTheSitesData.Payment
  Enhanced class BikeTheSitesData.Tour
  Enhanced class BikeTheSitesData.Reservation
  Enhanced class BikeTheSitesData.ReferralType
  Enhanced class BikeTheSitesData.Contact
  Enhanced class BikeTheSitesData.Address
  Enhanced class BikeTheSitesData.PaymentDetail
  Enhanced class BikeTheSitesData.Location
  Enhanced class BikeTheSitesData.ClientType
  Enhanced class BikeTheSitesData.Coupon
  Enhanced class BikeTheSitesData.Branch
  Enhanced class BikeTheSitesData.TaxRate
  Enhanced class BikeTheSitesData.BranchAddress
  Enhancing of C:\Users\jrguay\Documents\Visual Studio 2010\Projects\BikeTheSitesReservation\BikeTheSitesData\bin\Debug\BikeTheSitesData.dll complete.
------ Rebuild All started: Project: C:\...\BikeTheSitesReservation\, Configuration: Debug Any CPU ------
Validating Web Site
Building directory '/BikeTheSitesReservation/App_Code/'.
Building directory '/BikeTheSitesReservation/Modules/UserControls/'.
Building directory '/BikeTheSitesReservation/Scripts/'.
Building directory '/BikeTheSitesReservation/'.

C:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\App_Code\Utility.cs(486,25): warning CS0168: The variable 'ex' is declared but never used
C:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Modules\UserControls\Availability.ascx(19,13): warning CS0618: 'Telerik.Web.UI.RadToolTipBase.ManualClose' is obsolete: 'This property is obsolete. Please use HideEvent="ManualClose" instead.'
C:\Users\jrguay\Documents\Visual Studio 2010\WebSites\BikeTheSitesReservation\Reservation.aspx.cs(161,29): warning CS0168: The variable 'ex' is declared but never used
Validation Complete
========== Rebuild All: 3 succeeded, 0 failed, 0 skipped ==========
========== OpenAccess All: 0 succeeded, 0 failed, 3 skipped ==========

0
Alexander
Telerik team
answered on 30 Apr 2010, 09:16 AM
Hi Jose,

Thank you for the information. It seems the assembly is enhanced correctly, I do not see any errors in the output. However, the website that references this assembly uses a not-enhanced version, maybe an old one. I would suggest you to clean the bin directory of the website and manually copy the enhanced BikeTheSitesData.dll assembly from the bin folder of the BikeTheSitesData project.

Sincerely yours,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jose
Top achievements
Rank 2
answered on 30 Apr 2010, 03:24 PM
Hi Alexander.

That did the trick. It is working now. Thanks!

Ok, I hate the idea of not having a project reference, so is there any ETA on when the next build that will have this issue fixed is going to be released?

Thank you.
Jose
0
Alexander
Telerik team
answered on 03 May 2010, 04:33 PM
Hi Jose,

Hopefully we will be able to provide the service pack by the end of the next week. I will notify you in this thread once it is released.

Sincerely yours,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Alexander
Telerik team
answered on 27 May 2010, 04:35 PM
Hi Jose,

The Service pack is released and you should be able to download it from your account. We believe that all those enhancer problems are resolved now.

Sincerely yours,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Jose
Top achievements
Rank 2
answered on 27 May 2010, 04:38 PM
Thank you so much Alexander.

Does this build also include the visual designer for VS 2010?

Thanks.
Jose
0
Alexander
Telerik team
answered on 27 May 2010, 04:39 PM
Hi Jose,

Yes, it does. You can give it a try.

Kind regards,
Alexander
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
General Discussions
Asked by
Hessner
Top achievements
Rank 2
Answers by
sitefinitysteve
Top achievements
Rank 2
Iron
Veteran
Alexander
Telerik team
Jose
Top achievements
Rank 2
Mikael Kleinwort
Top achievements
Rank 1
Share this question
or