Errors when compiling the Blank Plugin

Yes the exact same results for me, no problems when it’s just the blank plugin with no alterations.

But

if we add the following to the .h file (nothing needs to be done to the cpp)

UCLASS() class UIceWareBPLibraryModule : public UBlueprintFunctionLibrary { / File I/O to and write data, as well as support functions, getting directory information, file information, erasing files, etc. /

GENERATED_UCLASS_BODY()
UFUNCTION(BlueprintCallable, Category = “IceWareFileBluePrintLibrary”) static bool IceWareFileWrite_StringsToFile(FString TargetDirectory, FString FileName, FString SingleString, TArray StringArray, bool& AllOk, int32& ReturnCode, FString& RcMessage, int32& RecordsWritten, int32& ExecTime, bool OverWrite = false, int32 NumberOfElementsForEachRecord = 1, FString ElementDelimiter = “,”, FString NewLine = “\r”); };

Then the error occurs, as shown in the first post.

I am using, a brand new plugin creation, with only the above change as noted in place.