Is there a way for my ASP.net Application to know if it's running within SharePoint (2010), but without referencing SharePoint Assemblies? (So I can't just check if SPContext.Current is null).

I wonder if it's viable to get all Assemblies that are loaded by name? So if I see that my AppDomain contains a Microsoft.SharePoint assembly then I know I'm in SharePoint.

Use case: The Assembly runs outside of SharePoint as well, but referencing SharePoint DLLs requires to deploy them (not possibly due to licensing) or getting Exceptions when I access a SharePoint method.

At the moment I use conditional compilation, but I'd like to get away from that and use a DI-mechanism to choose one of two classes, depending if I'm in SharePoint.

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted
bool isSharepoint =
     AppDomain
        .CurrentDomain
        .GetAssemblies()
        .Any(a => new AssemblyName(a.FullName).Name == "Microsoft.SharePoint");

Untested, but this would perform the check for a loaded assemblies whose name was Microsoft.SharePoint.

link|improve this answer
Minor quibble: its AppDomain.CurrentDomain.GetAssemblies().. – Conrad Frix Jun 3 '11 at 21:23
Two more things: .Any takes a Predicate so you can get rid of the .Where. Also, the AssemblyName is StartsWith, not == since it's strongly named. AppDomain.CurrentDomain.GetAssemblies().Any(a => a.FullName.StartsWith("Microsoft.Sharepoint")); That's my current approach. – Michael Stum Jun 3 '11 at 21:26
1  
@Michael Stum, that is why I pass it into the AssemblyName constructor, since MS recommends against manual parsing of FullName "Writing your own code to parse display names is not recommended. Instead, pass the display name to the AssemblyName constructor, which parses it and populates the appropriate fields of the new AssemblyName." – Guvante Jun 3 '11 at 21:33
I think there's a typo in the answer - should probably be "Microsoft.SharePoint" (capital P). right? – yellowblood Aug 29 '11 at 7:12
@yellowblood: Quick google says you are correct, so I will change, but as I said I don't have a test box to verify for certain. – Guvante Aug 29 '11 at 23:56
feedback

One way wold be to check the command line parameters of your current process (w3wp.exe) and look for the "-ap "SharePoint Content AppPool". Personally, I prefer the method you mentioned (looking for Microsoft.SharePoint.dll assembly).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.