Я скопіював попередній проект і перейменував його. Після того, як я успішно перейменував усі простори імен, і він побудований правильно. Під час запуску програми я отримав таку помилку:
The following errors occurred while attempting to load the app.
- The OwinStartup attribute discovered in assembly 'User Manager Interface' referencing startup type 'User_Manager_Interface.Startup' conflicts with the attribute in assembly 'Service Monitor Web Interface' referencing startup type 'Service_Monitor_Web_Interface.Startup' because they have the same FriendlyName ''. Remove or rename one of the attributes, or reference the desired type directly.
To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.
To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.
Я зрозумів, що якщо я прокоментую перший рядок нижче, помилка зникне.
//[assembly: OwinStartupAttribute(typeof(Service_Monitor_Web_Interface.Startup))]
namespace Service_Monitor_Web_Interface
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}
Я перейменував своє рішення з User_Manager_Interface на Service_Monitor_Web_Interface.
Здається, я не можу знайти жодного місця зі старою назвою, тому в помилці, в якій це згадується.