简体   繁体   中英

UnityConfig.cs file while keeping unity.mvc5 with unity.webapi together in the same project

Nuget package manager keeps only one UnityConfig.cs file so I need to merge both of them so that both packages work. How can I do this?

using Microsoft.Practices.Unity;
using System.Web.Http;
using System.Web.Mvc;
using Unity;

namespace project_name
{
    public static class UnityConfig
    {
        public static void RegisterComponents()
        {
            var container = new UnityContainer();

            // register all your components with the container here
            // it is NOT necessary to register your controllers

            // e.g. container.RegisterType<ITestService, TestService>();

            DependencyResolver.SetResolver(new Unity.Mvc5.UnityDependencyResolver(container));

            GlobalConfiguration.Configuration.DependencyResolver = new Unity.WebApi.UnityDependencyResolver(container);
        }
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM