Hello.
I have some methods were we have put some comments on ServiceBuilder, using “Document this Operation”. Some of those comments are multiline comments.
Before, generating the _Intf files created, for instance:
// Description:
// En esta función se obtiene la información de los almacenes que están habilitados
// utilizando un Query a la base de datos.
The newest versions, 1601 and 1603, generate this code:
/// <summary>
/// En esta función se obtiene la información de los almacenes que están habilitados
utilizando un Query a la base de datos.
/// </summary>
Which breaks the compilation…
This also appear to happen with Delphi codegen. C# doesn’t appear to generate those comments, so it is not affected. I haven’t checked other languages.
Forgot to mention: this happens from ServiceBuilder and from within the IDE.
And here is an example RODL that will show the problems. I also added comments within the documentation to see what would happen:
TestComments.rodl (831 Bytes)