Asp.net project dependency issue (Building each tier separately)

后端 未结 2 433
天涯浪人
天涯浪人 2021-01-24 19:51

Project1 = Asp.net pages project (presentation Layer)

Project2 = Data Access Layer

when Project1 is hosted and running smooth, if i have to add few PRIVATE metho

2条回答
  •  太阳男子
    2021-01-24 20:39

    You don't HAVE to rebuild it. You can just copy the new project2 dll to the web app\bin directory and it will work if the interface hasn't changed. A build of project1 will redundantly rebuild project1 and produce the same result, and also include the latest version of project2, that's why it works, too.

提交回复
热议问题