ASP.NET Web API - Startup.cs 이 존재하지 않습니다. Startup.cs 클래스를 포함하지 않는 ASP.NET Web API 솔루션이 있습니다.MVC 솔루션으로 솔루션이 만들어지지 않았기 때문인 것 같습니다. 시작에 대한 모든 코드는 아래와 같이 Global.asax.cs 파일에 정의되어 있습니다. public class Global : HttpApplication { void Application_Start(object sender, EventArgs e) { // Code that runs on application startup AreaRegistration.RegisterAllAreas(); GlobalConfiguration.Configure(WebApiConfig.Regi..