Debugging
Windows Service Debugging
Windows Service Debugging
2009.10.21일반적으로 Visual Studio의 Process Attach를 이용해서 Windows Service를 디버깅하지요. 코드에 아래와 같이 디버그 모드 일 때 Debugger 선택 화면을 보도록 할 수 있습니다. #if DEBUG System.Diagnostics.Debugger.Launch(); #endif 위 코드를 OnStart() 메소드에 넣어주시면 될 것 같네요. 참~ 쉽죠잉~ 자세한 내용은 아래 링크를 확인해보세요~ http://weblogs.asp.net/paulballard/archive/2005/07/12/419175.aspx
Remote Web part debugging
Remote Web part debugging
2008.06.24http://msdn2.microsoft.com/en-us/library/ms916837.aspx 이 글은 원격 컴퓨터의 웹파트를 디버그하고 개발하는 방법을 소개합니다. 내용은 MSDN의 내용을 발췌하였습니다. Developing and Debugging from a Remote Computer To use a remote computer to develop and debug, follow these steps. Note To follow these steps, you must have a client computer running Visual Studio .NET (Computer_A) and a server computer running Windows SharePoint Services (Server..