블로그 이미지
Every unexpected event is a path to learning for you. blueasa

카테고리

분류 전체보기 (2794)
Unity3D (852)
Programming (478)
Server (33)
Unreal (4)
Gamebryo (56)
Tip & Tech (185)
VS 프로젝트 설정 (40)
TortoiseSVN (4)
Excel (5)
협업 (11)
3DS Max (3)
Game (12)
Utility (68)
Etc (98)
Link (32)
Portfolio (19)
Subject (90)
iOS,OSX (55)
Android (14)
Linux (5)
잉여 프로젝트 (2)
게임이야기 (3)
Memories (20)
Interest (38)
Thinking (38)
한글 (30)
PaperCraft (5)
Animation (408)
Wallpaper (2)
재테크 (18)
Exercise (3)
나만의 맛집 (3)
냥이 (10)
육아 (16)
Total
Today
Yesterday
I can use the Ctrl+, shortcut to search for methods but will search among the entire project:

This lists all the classes in all files that have this method, and I want to search only in the current file, similar to Alt+M in VAssistX. Is there a shortcut for that?

I found Is there an easy way to jump right to a method within a file?, but it's for VS2012, and they only suggest Ctrl+F or Ctrl+,.

Note: I'm looking for true navigation, not Ctrl+F, and only within the current file, unlike Ctrl+,.

 

 

[출처] 

반응형
Posted by blueasa
, |

Visual Studio 2022

----

 

[파일명(Filename)으로 찾기(Find)/가기(Go)]

 

 

[참조] https://stackoverflow.com/questions/1508973/how-to-search-for-file-names-in-visual-studio

 

How to search for file names in Visual Studio?

In Eclipse you can search for a file in the project by pressing CTRL-SHIFT-R. Is there a way to do this in Visual Studio?

stackoverflow.com

 

반응형
Posted by blueasa
, |

[링크] https://fusionit.tistory.com/56

 

Visual Studio 2022 필수 무료 확장 + 몇 가지 팁.

Rider도 있고 vscode도 있지만 역시 기본 프로그램인 visual studio를 사용해보았지만 vscode에 있는 편리한 기능들이 없다는 것이 단점이다. 편리하게 사용하기 위해 필요한 확장들을 정리해보았다. Auto

blog.pi-dimension.com

 

반응형
Posted by blueasa
, |

Visual Studio 2022

----

 

[경로] Visual Studio - 도구 - 옵션 - 텍스트 편집기 - C# - 고급 - Using 지시문-'붙여넣을 때 누락된 using 지시문 추가' 끄기

 

 

[참조] https://stackoverflow.com/questions/74894754/how-to-stop-visual-studio-2022-to-add-namespace-automatically-after-copy-codes-f

 

How to stop Visual Studio 2022 to add namespace automatically after copy codes from other place

As the title said, now I have a problem when copy codes from anywhere, and when pasting to my source files (C#/.cs), it will add a namespace automatically, sometimes the namespace is wrong but I do...

stackoverflow.com

 

반응형
Posted by blueasa
, |

[추가] 2024-08-21

Visual Studio 2022를 다시 설치하려고 시도했는데 아래 2가지 경우가 발생하면서 설치가 안된다.

결국 Microsoft DNS 문제였다.

다른 DNS로 바꾸고나니 정상적으로 잘 설치된다.

 

----

1) MSDN에서 Visual Studio 2022(https://visualstudio.microsoft.com/ko/thank-you-downloading-visual-studio/?sku=enterprise&channel=Release&version=VS2022&source=VSLandingPage&cid=2030&passive=false)를 다운받으려는데 아래와 같이 '사이트에 연결할 수 없음'이라고 뜨면서 다운이 안됨.

 

2) 웹사이트에서 Visual Studio Installer 파일을 다운받아서 설치하려고 하는데 아래와 같이 에러를 내면서 설치 진행이 안됨.

 

 

 

 

[링크] https://davi06000.tistory.com/11

 

[ VS 삽질 ] VisualStudio 설치 속도가 너무 느릴때

//서론 새로 설치해야하는 SDK와 기존에 설치되어있던 VS의 키트가 충돌을 일으켜서 VS를 지웠다가 깔아야하는 상황이었다. 그런데 설치 속도가 24KB/sec? 진짜 화가 머리끝까지 치미는 상황이다. //

davi06000.tistory.com

 

반응형
Posted by blueasa
, |

[요약] 솔루션(sln) 파일을 vs2019에서 vs2022로 변경하기 위해 찾아봄

[방법]

1) 솔루션(sln)파일을 에디터로 열어서 원하는 버전으로 수정

    - 나는 글쓰는 시점 기준 17.1.358.51495로 수정함

    - vs2022는 17버전임. 세부 버전은 VS 실행해서 '도움말-Microsoft Visual Studio 정보'에서 세부 버전 확인

2) 솔루션(sln) 파일 연결 프로그램은 'Microsft Visual Studio Version Selector'로 변경.

3) 더블클릭해서 실행해본다.

    - 혹시나 잘안되면 .vs 폴더 삭제 후 다시 더블클릭

 

---------------------------------------

 

Welcome to Microsoft Q&A!

You can open the sln file of the project, for example, using Visual Studio Code.
This is a partial screenshot of two sln files, the upper one was created by Visual Studio 2019, and the lower one was created by Visual Studio 2022.

Visual Studio 2019:

Visual Studio 2022:

"# Visual Studio Version 16"
The major version of Visual Studio that (most recently) saved this solution file. This information controls the version number in the solution icon.
VisualStudioVersion = 16.0.28701.123
The full version of Visual Studio that (most recently) saved the solution file. If the solution file is saved by a newer version of Visual Studio that has the same major version, this value is not updated so as to lessen churn in the file.

You can modify these two version numbers.
As an example, I modified the version number of the sln file created by VS2019:


Double click the sln file, it will open in VS2020.

You can refer to Solution (.sln) file.

 

 

 

[출처] https://docs.microsoft.com/en-us/answers/questions/619989/upgrading-sln-to-open-with-visual-studio-2022-comm.html

 

Upgrading sln to Open With Visual Studio 2022 Community - Microsoft Q&A

 

docs.microsoft.com

 

반응형
Posted by blueasa
, |


[단축키] Alt + W, N



[출처]

http://www.gamecodi.com/board/zboard.php?id=GAMECODI_Talkdev&page=1&page_num=35&select_arrange=headnum&desc=asc&sn=off&ss=on&sc=on&keyword=&no=4361&category=


반응형
Posted by blueasa
, |

위 글을 기억하시나요? ㅎㅎ.. 이런 확장 기능이었는데요.




결국 능력자님들이 여러 에디터로 만들어주셨습니다. 짝짝짝 지금 잘 사용중입니다~



[현재 나의 셋팅]




[출처]

http://www.gamecodi.com/board/zboard.php?id=GAMECODI_Talk&page=1&page_num=35&select_arrange=headnum&desc=asc&sn=off&ss=on&sc=on&keyword=&no=33343&category=

반응형
Posted by blueasa
, |


링크 : https://channel9.msdn.com/Events/TechDays/TDK2015/T2-3

반응형
Posted by blueasa
, |


링크 : http://smilejsu.tistory.com/576

반응형
Posted by blueasa
, |