I have created a Visual Web Part in VS2010 with SPmetal-generated Entities and a repository.
This is the code in the Page_Load()
var _repository = new ITStatistikenVWP.TicketsystemRepository();
TextBox txt = new TextBox();
txt.Text = repository.getNewTicketCount().ToString();
txt.TextMode = TextBoxMode.MultiLine;
Simple as that. The problem is, that the solution gets installed and deployed, but in the featurelist in the SiteCollection it does not get listed. It is also missing in the 14/Template/features folder.
What am I missing?