An error occurred when merging assemblies: ILMerge.Merge: ERROR!!: Duplicate type 'index' found in a

来源:互联网 发布:淘宝卖家商品采集软件 编辑:程序博客网 时间:2024/06/05 20:19

原因可能是首页index.aspx有存在重名

解决方法把页面<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="index" %>改为

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="_index" %>

代码隐藏页public partial class index : System.Web.UI.Page改为public partial class _index : System.Web.UI.Page

只要不重名就会通过

0 0
原创粉丝点击