You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Extract package names, exclude ServiceStack packages, and remove the prefix
grep "^dotnet add package ""$file"| grep -v "ServiceStack"| sed 's/^dotnet add package //'>>"$OUTPUT_FILE"||echo"# No eligible package references found in this file">>"$OUTPUT_FILE"
done
# Check if any content was added (excluding comment lines)
if [ $(grep -v "^#""$OUTPUT_FILE"| wc -l)-eq 0 ];then
echo"No eligible package references found in any _init files."