I think I found the solution. Here you have my implementation of ServiceProvider
You can find the description of it on [my blog][1].

    public class ServiceContainer : IDisposable
    {
        readonly IList<IService> services = new List<IService>();

        public void Add<T>(T service)
        {
            Add<T,T>(service);
        }

        public void Add<Key, T>(T service) where T : Key
        {
             services.Add(new Service<Key>(this, service));
        }

        public void Dispose()
        {
            foreach(var service in services)
                service.Remove(this);
        }

        ~ServiceContainer()
        {
            Dispose();
        }

        public T Get<T>()
        {
            return Service<T>.Get(this);
        }
    }

    public interface IService
    {
        void Remove(object parent);
    }

    public class Service<T> : IService
    {
        static readonly Dictionary<object, T> services = new Dictionary<object, T>();

        public Service(object parent, T service)
        {
            services.Add(parent, service);
        }

        public void Remove(object parent)
        {
            services.Remove(parent);
        }

        public static T Get(object parent)
        {
            return services[parent];
        }
    }

Yes it uses static field, but all references are removed in finalizer so the only drawback is that ServiceProvider stays one GC generation longer than usually.


  [1]: http://seermindflow.blogspot.com/2008/10/is-it-possible-to-write-c-application.html