검색결과 리스트
Visual Studio에 해당되는 글 4건
- 2012/02/08 asp.net development server port issue
- 2009/09/25 CoolCommands 를 Visual Studio 2005 / 2008 에 명령프롬프트로 설치하기
- 2008/07/02 [펌] XAML Converter
- 2007/10/08 My Favorite Visual Studio 2005 Add-Ins
글
asp.net development server port issue
지금껏 C/S 만 위주로 개발을 하다 오랜만에 Web 관련 프로젝트를 하고있다..
물론 Silverlight 라서 크게 문제되지는 않지만 8, 9 년 전에 PHP 하던게 Web 관련 일은 전부인지라...
이것 저것 걸리는게 많다...
그 와중에 간간히.. 때때로 매번.... Silverlight 쪽 소스 변경한 것을 확인할려고 솔루션 탐색기의 Web Project 를
디버그 모드로 실행하면("마우스 우클릭=>디버그=>새 인스턴스 시작") 위와 같은 에러가 난다... 팝업창을 닫으면
디버깅이 종료되서 팝업창을 닫지 않고 그냥 진행해 보면 마지막 소스가 반영되지 않아서 인지 브레이크 포인트에 걸리지도 않는다..
난 분명히 소스를 수정하고 디버깅 했는데... 안된다... WPF 와 Link 를 해서 사용하고 있어서 WPF 에서 확인해보면 또 수정된 부분이 잘 반영되어 있따..
우짜지....
.....
...
.
트레이 아이콘에 asp.net development server 아이콘이 실행중이고 그래서 소스 변경하고 디버깅을 하면 알아서 잘 실행되던게
자꾸 포트 바인딩 에러가 난다...
처음엔 어라... 어디에서 저 포트를 쓰고있찌??? 라면서 삽질 좀 했다
구글링해도 마땅한 해결책을 찾지 못하고...
Visual Studio 에서 이거저것 확인하던 중에 해당 Web Project 의 속성에 보니
한글판 기준으로 [개발서버] 라는 카테고리에 [디버깅 시 항상 시작] 이라는 속성이 있다... True 로 되어있다...
어라.. 걍 트레이에 항상 떠 있었는데... 매번 새로 실행을 시키나?... 해서 False 로 바꾸고 해보니 포트 바인딩 에러가 나지 않는다.
머 전문적으로 어떻게 설명을 해야할지는 모르겠지만 직감적으로 포트 바잉딩 에러 자체가 기존에 Listening 하고 있는 포트를
또 바인딩할려고 해서 나는 에러니깐(다행히 소켓에 대한 개념은 약간 있었나 보다....)...
해결 된 거 맞지? 확실히 이 문제인지는 모르겠으나... 지금은 정상적으로 브레이크 포인트도 다 먹고 잘~~ 된다
ㅎ~
======= 추가 설명 =======
[디버깅 시 항상 시작] 의 값에 따른 Process Explorer 로 확인한 스크린 샷
다음 스샷에서 보는 것 처럼 Visual Studio 하위로 WebDev.WebServer40 프로세스가 True 일때는 2 개가.. False 일때는 정상적으로 1 개만 실행이 된다
결국 WebDev.WebServer40 프로세스가 중복 실행 되면서 동일한 포트에 바인딩할려다가 발생한 에러인듯 하다...
[디버깅 시 항상 시작 = True]
[디버깅 시 항상 시작 = False]
'IT > Dot Net' 카테고리의 다른 글
| asp.net development server port issue (0) | 2012/02/08 |
|---|---|
| [펌]Visual Studio 2010 OutOfMemoryException (0) | 2012/01/12 |
| 유용한 Extension Method 하나 (0) | 2011/05/03 |
| C# 으로 안드로이드 또는 아이폰 어플 개발 (0) | 2011/04/06 |
| [FarPoint Spread]데이터와 헤더라벨을 고려한 컬럼너비 자동조정 구현 (0) | 2010/11/12 |
| [펌]Clickonce 인증서 만료시 해결책 - 기존 인증서 만료기간 수정 (0) | 2010/11/05 |
글
CoolCommands 를 Visual Studio 2005 / 2008 에 명령프롬프트로 설치하기
설치 경로 및 참조 정보 url
http://weblogs.asp.net/GMilano/archive/2006/02/27/439208.aspx
CoolCommands 3.0 인스톨 버전은 Visual Studio 2005 를 위한 것이었음...
2008 이 나온 지금 솔루션탐색기에서 해당 소스파일 폴더를 열 수 있는 기능은 추가가 되서 불필요 하겠지만,
다른 기능을 사용하겠다면 msi 파일로 설치할게 아니라
아래 표의 커맨드라인 명령은 Path 를 고려해서 수정해줘야함
|
[Visual Studio 2005]
-- Install "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe" CoolCommands.dll /codebase
-- UnInstall "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe" /u CoolCommands.dll
[Visual Studio 2008]
-- Install "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe" CoolCommands.dll /codebase
-- UnInstall "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\regasm.exe" /u CoolCommands.dll
|
2008 에 설치할 때 regasm 경로를 다른 버전으로 바꿔야 할까??
실제 바뀐 부분이 있는지 여부는 다시 확인해 봐야 할듯함
'IT > Dot Net' 카테고리의 다른 글
| [펌]About Box 에 관한 좋은 소스 (0) | 2010/02/18 |
|---|---|
| [펌] C# 팝업폼 Activate(API) (1) | 2010/01/12 |
| CoolCommands 를 Visual Studio 2005 / 2008 에 명령프롬프트로 설치하기 (0) | 2009/09/25 |
| 주석 태그 정리 (0) | 2009/06/16 |
| [펌]Image Codec (0) | 2009/05/27 |
| [펌]Mutex (0) | 2009/05/08 |
글
[펌] XAML Converter
Maya To XAML Converter
http://www.highend3d.com/maya/downloads/tools/3d_converters/Maya-To-XAML-3782.html
For 2D: Jonas Beckeman's PSD to XAML Converter
http://flowlabs.net/psd2xaml.aspx
Online converter from 3ds to xaml
http://www.wpf-graphics.com/Converter.aspx
Fred Vandervelde's DWG/DXF to XAML Conversion Toolkit (D2X)
http://www.codeplex.com/Wiki/View.aspx?ProjectName=DWG2XAML
A freely available plug-in that enables Adobe® Illustrator® to export WPF and WPF/E compatible XAML
http://www.mikeswanson.com/XAMLExport/
A free tool that converts Adobe/Macromedia Flash files to XAML
http://www.mikeswanson.com/swf2xaml/
Fireworks to XAML Converter June 1st, 2006
http://www.granthinkson.com/?p=35
XAML/HTML Converter
http://wpf.netfx3.com/files/folders/developer/entry816.aspx
ZAM 3D - 3D XAML Tool (and 3ds & dxf to XAML converter)
http://www.erain.com/products/zam3d/DefaultPDC.asp
LightWave 3D to Xaml Converter
http://blogs.msdn.com/danlehen/archive/2006/07/22/675067.aspx
헥헥, 너무 많아서 더이상은... 검색엔진에서 XAML Converter로 찾아 보세요.
이 글을 읽고 있는 도중에도 더 많아질 것입니다.
XAML Converter만 있는 것이 아닙니다.
기회를 느낀 소프트웨어 개발 업체들은 아예 "XAML 디자인/개발 툴"까지 만들었습니다.
질문 : "잉? XAML개발은 Microsoft꺼라 Expression과 Visual Studio만 되는 것 아닌가요?"
답변 : 잊으셨나요? XAML은 표준 마크업 언어인 XML을 확장한 XML파일, 즉 텍스트 파일입니다.
Microsoft도 적극적으로 이런 3rd업체의 XAML지원을 돕고 있구요.
Aurora XAML Designer(완성된 상용 XAML 디자인 툴)
Expression 제품과 Visual Studio 제품 뿐 아니라, 특정 비지니스나 Presentation에 특화된 XAML 디자인 툴까지 계속 발표되고 있으며 다른 모든 그래픽스나 설계, 디자인 업체 역시 XAML을 지원하기 위해 노력하고 있습니다.
'IT > Dot Net' 카테고리의 다른 글
| ClickOnce 업데이트 서버 구성 방법 정리 (0) | 2008/07/30 |
|---|---|
| [펌] ClickOnce 애플리케이션의 필수 프로그램 배포 - 부트스트래퍼(Bootstrapper) (0) | 2008/07/21 |
| [펌] XAML Converter (0) | 2008/07/02 |
| [펌]ClickOnce - Uninstall (0) | 2008/06/06 |
| [펌]ClickOnce - 바탕화면 바로가기 (0) | 2008/06/06 |
| 강제 메모리 회수 (0) | 2008/05/22 |
글
My Favorite Visual Studio 2005 Add-Ins
I have been using Windows Vista on my laptop for two solid years. I thought it was about time to dual boot my machine with Windows XP Professional. I find that my battery life and performance has greatly increased compared to Vista. I use my laptop for development, so the first thing I did after dual booting is installed Visual Studio 2005 Team Suite with SP1.
I think a lot of developers in general are not using the full potential that Visual Studio has to offer. There are many free and commercial add-in's that developers have made that takes Visual Studio 2005 to the next level. The next level that I'm talking about is; the user experience that makes the developer become more productive and at the same time headache free. I will try my best to keep this page updated as I find new add-in's. If you have an add-in that you would like to me to review, please send an e-mail to admin @ windowscoding dot com.
Free Add-In's
"GhostDoc is a free add-in for Visual Studio that automatically generates XML documentation comments for C#. Either by using existing documentation inherited from base classes or implemented interfaces, or by deducing comments from name and type of e.g. methods, properties or parameters" (GhostDoc).
GhostDoc is awesome! Anyone can create source code documentation. Using NDoc and a little bit of time, you can easily convert your XML documentation that GhostDoc helped you create, to an awesome MSDN document.
The Consolas font pack for Visual Studio 2005 is a fixed-width font that makes your source code look amazing and at the same time is easy on your eyes. Running the installer will add the font to your Windows operating system and change the default text font in Visual Studio 2005 to Consolas.
"Consolas is intended for use in programming environments and other circumstances where a monospaced font is specified. All characters have the same width, like old typewriters, making it a good choice for personal and business correspondence. Optimizing the font specifically for ClearType allowed a design with proportions closer to normal text than traditional monospaced fonts like Courier. This allows for more comfortable reading of extended text on-screen" (Microsoft).
Download ( Consolas Font Pack for Microsoft Visual Studio 2005 )
Have you ever needed to go into the Windows registry and delete the MRU entries to remove projects that you have deleted or will never use again? Well this is the tool that will do it automatically for you. I have been looking for an add-in like this for a long time. I'm just wondering why Microsoft has not included this in Visual Studio 2005. Who knows, maybe we will see it in Orcas.
CoolCommands that makes it easy for users who want to present their code to others with just a few clicks. Quickly change your font size with a scroll of your mouse wheel.
CoolCommands integrates the Windows Explorer and Command Prompt into Visual Studio. Now you never have to navigate your file system to where your solution exists. CoolCommands also makes it extremely easy to copy project references to another project in the current solution.
Overall CoolCommands adds some nice functionality that you will use and will come to appreciate in only a short time.
Other Add-In's
In the past I have used the free SlickEdit Gadgets, I think their SLOC gadget is pretty cool. I might have to download it and try it out in the future. Recently I downloaded Regionerate, I think that this is a great idea for an add-in, but since they brand the regions, I can go without it. Karthik Hariharan has been really trying to get me to try out CodeRush. From the features of CodeRush that I have been told about, I think that I am definitely going to check it out.
Commercial Add-In's
ReSharper "The Most Intelligent Add-In To Visual Studio"
Recently, I was introduced to ReSharper by a friend. This is one of my favorite add-in's so far. JetBrains coined ReSharper "The most intelligent add-in to Visual Studio", and I'm going to have to say they are right. This add-in is simply amazing!
To the right is a picture of one section in the Options Page. It has a much better settings layout to customize source code formatting than Visual Studio.
One thing I noticed the most after installing ReSharper is; it does a lot of things Visual Studio should automatically do for you like code completion. How many times have you written ToString and then had to type ()? The cool thing about ReSharper is it does a lot of little things for you automatically.
ReSharper optimizes your code. One thing it checks is the using directive for unused directives. With one click they're obliterated.
ReSharper will automatically scan your code for best practices and other common mistakes as well as warn you instantly; saving you from hitting build.
If you had to go back and change someone's code before, then you know how much of a hassle it can be. With ReSharper you can quickly refractor code with ease. "Context Actions" quickly allows you to upgrade existing code to coding best practices. The following paragraph (including pictures) shows one of the reasons I love ReSharper.
"Context actions
Context actions are intended for local code transformations that you may want to perform in a certain context. When one or more context actions are available at the current caret position, ReSharper automatically indicates this with the yellow light bulb to the left of the code line. Context actions are applied just like quick-fixes. You can either click the bulb or press Alt + Enter, and then select the desired action.
Context action for concatenated string
Generated format string" (ReSharper).
There are many more features that ReSharper has; you can view the complete feature list here. If ReSharper was a little cheaper, then one could spend less time gathering up their pennies. I would highly recommend to any developer to give ReSharper a chance by downloading and evaluating the 30 day trial.
Posted Jun 24 2007, 08:39 PM by Blake Niemyjski with 2 comment(s)
Filed under: Windows Vista, Visual Studio 2005, XP Professional, ReSharper, MRU Cleaner, Consolas, GhostDoc, CoolCommands
<http://windowscoding.com/blogs/blake/archive/2007/06.aspx>에서 삽입
'IT > Dot Net' 카테고리의 다른 글
| XAML 관련링크 (0) | 2008/05/22 |
|---|---|
| Visual Studio 2008과 .NET Framework 3.5의 새 기능 Link들 (0) | 2008/03/03 |
| 닷넷프레임웍 소스 코드 디버깅 설정 방법 (0) | 2008/01/29 |
| My Favorite Visual Studio 2005 Add-Ins (0) | 2007/10/08 |
| [펌]C# 진법변환 (0) | 2007/09/17 |
| [펌]C#의 음수 이야기 (0) | 2007/09/17 |
