Build vs.net solution action and assemblyinfo files

I ran into the issue that if I build solution containing .NET CORE projects, FinalBuilder has no idea how to find Assembly Info (AI) file. Because it is looking into project file to get the location. Given, by default CORE projects generate AI files during build. In this case you can;t do much. But this entry into project file solves this issue


false


Now you can add a AI file. However, FB still doesn’t find AI file because it is looking for its location in the project file. There is workaround so solve this issue: https://stackoverflow.com/a/47360695/1704458

But would be nice if FB would be able to search directories for this file in CORE projects.

Hi

Thanks for the info. I have updated our documentation for the action, however we will look at supporting searching directories.

http://wiki.finalbuilder.com/display/FB8/Visual+Studio+.NET+Action#VisualStudio.NETAction-.NETCoreProjectAssemblyInfo

Great, Thank you