Reputation: 3095
Through Visual Studio 2010 I deployed a feature (which sets up a timer in the FeatureActivated event) to SharePoint.
The Site URL the project is pointing to is:
<code>
http://servername/sitename/
</code>
After I deploy I go into Central Admin and I see the Timer is there, yay.
However when I go into 'Site Settings' for 'sitename' then 'Manage site features' I do not see the feature listed.
Where is this feature? I want to be able to enable/disable it for testing.
Upvotes: 0
Views: 82
Reputation: 14100
What scope is the feature?
What you've created sounds like a Timer job, so I'm guessing that it would be either a Farm or Web Application scoped feature.
If you open up the Feature in Visual Studio, there is a dropdown for scope which should tell you what you need to know.
Upvotes: 1