Monodevelop line endings

I have a game with a lot of different scripts in them, written in javascript in Monodevelop.

Somehow i managed to change 2 of the scripts’s line endings.

The game can run fine in the editor, but when try to build it shows the error "expecting “*” found “< EOF >”

This is the Solution options.

[28590-solution+options.png|28590]

Im not really sure what i need to change, and if i need to change in in Project => Solution Options or Tools => Options => Source Code.

If it makes a difference, the game will run on android.

I’d imagine you get that error from not closing a comment block somewhere in the file

#pragma strict

function start(){
 // work your magic
}

/*
function Update(){
 // more magic
}

Missing the closing comment block and found End of File (*/)