A previous iteration of a SQL Server Data Tools project in my Visual Studio solution utilized FileTables/FILESTREAM. The codebase has since been refactored to not use FileTables so I removed all files that referenced that feature. I'm now getting this error when I try to rebuild the project:
Error 367 SQL71501: Database Options has an unresolved reference to Filegroup [FILESTREAM]. Remove the reference using the project settings page of the project's properties.
Following the error message's instructions, I go into Project Properties > Project Settings > Database Settings and remove as many references to FILESTREAM as possible. I'm still getting this error message, however. How to I fix it?
Thanks in advance.
<DefaultFileStreamFilegroup>
tag out of thesqlproj
file. – Nanosecond