Serenity: Possible breaking change in 3.5.2
Hello there. After updating Serenity packages from 3.4.4 to 3.5.2, I’m getting an error in T4 template transformation. Updated all packages including Web Tooling. Project is traditional .NET 45. Any suggestions?
Compiling transformation: 'InterfaceImplementation' does not contain a definition for 'FullName' and no extension method 'FullName' accepting a first argument of type 'InterfaceImplementation' could be found (are you missing a using directive or an assembly reference?) Miscellaneous Files xxx.Web\Imports\ClientTypes\..\CodeGenerationHelpers.ttinclude 167
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 22 (11 by maintainers)
You need to also upgrade Serenity.Web.Tooling before doing that change
Volkan already answered: replace
externalType.Interfaces.Add(intf.FullName)
withexternalType.Interfaces.Add(intf.InterfaceType.FullName)
=> (it worked for me).anyway, Try to update to 3.5.4 (latest version)