So we have some custom objects that we would like to move over to the new installation of kentico. We have found online that if we create two folders in side the App_Code folder; CSCode and VBCode we can configure the project to run both languages in the app_code. C# and vb.net
Web Config:
<!-- Different programming languages BEGIN -->
<codeSubDirectories>
<add directoryName="CSCode"></add>
<add directoryName="VBCode"></add>
</codeSubDirectories>
<!-- Different programming languages END -->
My question, is this alright to do this within kentico. By doing this will this break any future updates or cause any know issues with in the kentico project?