I am trying to generate a bibliography with no luck until now. I get an empty one. Here is my code.
\documentclass[12pt,twoside, openright, a4paper]{report}
\usepackage{fontspec}
\usepackage{cite}
\usepackage{fancyhdr}
\begin{document}
\title{test}
\author{test}
\maketitle
\tableofcontents{}
\listoffigures
\listoftables
\input{chapters/c1/chapter1.tex}
\input{chapters/c2/chapter2.tex}
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}
my biblio.bib is
@conference{tess,
author = "test",
title = "test",
year = 2010,
}
and in TeXworks I use the option "XeLaTeX+MakeIndex+BibTeX". I read somewhere that I had to include the plain.bst file. Did it but didn't work. I tried everything. Any ideas?

bibtexseparately after you ran latex? that's necessary -- latex does not read or process.bibfiles; it requires a.bblfile "digested" bybibtex. (so then, afterbibtexis run, you must run latex again.) – barbara beeton Mar 29 '13 at 14:13\end{thebibliography}`
– theoddone Mar 29 '13 at 14:32texify, what is a MiKTeX speciality similar tolatexmk. This calls actually BibTeX if necessary. – Speravir Mar 30 '13 at 04:11