【问题标题】:How to debug a project with Output Type of Class Library in Visual Studio?如何在 Visual Studio 中使用类库的输出类型调试项目?
【发布时间】:2016-11-15 23:39:17
【问题描述】:

我遇到了需要在类库项目的方法中调试的问题?但是我收到一个项目错误说“无法直接启动具有类库输出类型的项目”? 有没有办法解决这个问题?我的项目是一个用户控件。

 [XRDesigner("Rapattoni.ControlLibrary.CCMLThreePicGalleryTableDesigner," + "Rapattoni.ControlLibrary")]
    public class CCMLThreePicGalleryCtrl : XRTable
    {
        #region Variables
        const int cTableWidth = 825;
        #endregion

        #region Properties
        /// <summary>
        /// Get\Set  bindable variables
        /// </summary>

        [Bindable( true ), DesignerSerializationVisibility( DesignerSerializationVisibility.Hidden )]
        public string SerialPicUrlString
        {
            get
            {
                return String.Empty;
            }
            set
            {
                SetPictures( value );
            }
        }

        private int CellWidth
        {
            get;  
            set;
        }

        private int CellHeight
        {
            get;  
            set;
        }

        private int PicHeight
        {
            get;  
            set;
        }

        private int PicWidth  
        { 
            get; set; 
        }

        private int MaximumPictures
        {
            get; set;
        }
        #endregion Properties


        #region Events

        #endregion

        #region Public/Private Methods

        private void SetPictures( string urlString )
        {
            CellWidth = 275;
            CellHeight = 130;
            PicWidth = 175;
            PicHeight = 120;
            //CommentCellWidth = "150";
            MaximumPictures = 12;

            this.Rows.Clear();
            this.BeginInit();

            string[] urls = urlString.Split( ';' );

            XRPictureBox picBox;
            XRTableRow row;
            CCMLThreePicGalleryCell cell;  //, CommentCell;

            // Prepare first Row
            row = new XRTableRow();
            row.Height = CellHeight; 
            row.CanShrink = false;

            int picTotal = urls.Length;
            /*
            if (picTotal % 3 == 1)  // Don't have one picture in a row
                picTotal--;
             */
            if (picTotal > MaximumPictures)      // Max of 12 pictures shown
                picTotal = MaximumPictures;
            else if (picTotal == 1)
                picTotal = 0;

            // Keep track of which picture
            int picCount = 0;
            // Go through each picture and assign to a cell
            for (int i = 0; i < picTotal; i++)
            {
                if (urls[i] != "")
                {

                    if (picCount % 3 == 0 && picCount > 0 )   // Make a new row after every 3rd picture
                    {
                        // Create a new row for pictures
                        row = new XRTableRow();
                        row.Height = CellHeight;
                        row.CanShrink = false;
                    }


                    cell = new CCMLThreePicGalleryCell();
                    cell.Size = new Size(CellWidth, CellHeight);
                    cell.CanShrink = false;
                    cell.Padding = new PaddingInfo(0, 0, 5, 5);


                    //CommentCell = new ThreePicGalleryCell(); // Don't want Comments

                    string[] url_comment = urls[i].Split('|');
                    picBox = new XRPictureBox();
                    //picBox.HtmlItemCreated += new HtmlEventHandler(picBox_HtmlItemCreated);
                    picBox.Sizing = ImageSizeMode.ZoomImage;
                    url_comment[0] = url_comment[0].Trim();
                    picBox.ImageUrl = url_comment[0];
                    picBox.Size = new Size(PicWidth, PicHeight);

                    cell.Controls.Add(picBox);

                    row.Cells.Add(cell);

                    if (picCount % 3 == 0)   // Add Finalized row
                    {
                        this.Rows.Add(row); // Add current row

                    }
                picCount++;
                } 
            }
            // Fix for odd bug where final picture is out 
            // of alignment if it is 2nd in the last row 
            if (picCount % 3 == 2)
            {
                cell = new CCMLThreePicGalleryCell();
                cell.Size = new Size(CellWidth, CellHeight);
                row.Cells.Add(cell);
                this.Rows.Add(row);
            }
            else if (picCount % 3 == 1)  // When last row has 1 picture
            {
                this.Rows.Remove(row);
            }


            if (urlString.Equals(string.Empty))
                this.Rows.Clear();

            this.EndInit();

        }

        #endregion
    }

【问题讨论】:

  • 你为什么不写一个测试工具?也许是一个控制台应用程序。类库不可执行,因此无法直接启动以进行调试。调试器只能附加到正在运行的进程。

标签: c# visual-studio


【解决方案1】:

通常我会创建一个单独的单元测试类库项目,然后在您最喜欢的单元测试运行器中启动,并以这种方式进行调试。

或者,开始调试实际使用您的类库的任何应用程序,练习将遇到您想要设置的任何断点的功能,然后从那里继续。

【讨论】:

    【解决方案2】:

    设置第二个小项目来使用该库。

    【讨论】:

    • Jon Skeets 单元测试风格项目是你最好的选择。
    【解决方案3】:

    将 Visual Studio 调试器附加到运行二进制文件的进程。

    【讨论】:

    • 我不确定如何实现这一点。你有什么参考吗?
    • 调试菜单 -> 附加到进程
    【解决方案4】:

    我同意 Jon Skeet 的观点。 TDD(测试驱动开发)是面向服务或业务逻辑类的最佳方式。

    它允许您启动 GUI 的一小部分并对其进行测试,而无需加载整个应用程序。

    【讨论】:

    • 请将“DTT”改为“TDD”
    猜你喜欢
    • 2014-06-12
    • 2011-01-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2010-10-14
    • 1970-01-01
    相关资源
    最近更新 更多