AI OnAI Off
Do you have your modules folder set to ignore in your .gitignore file, this is how my web project looks in Visual Studio, you can clearly see the modules files are ignored and not put into source control. We always have the following set in our .gitignore file:
# Optimizely files
*license.config
modules/
#Hide App_Data
**/App_Data/*
#Hide Web.config
web.config
I am using DbLocalization provider on a project with Optimziely CMS 12.16. In order to publish to the DXP, I create a nuget package. The build for this package causes an error:
In my csproj, I do have
So I would think this error shouldnt happen. And since the files are from a module, I cant control their behavior?
Any ideas on how to resolve?