Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

2016/06/12

How to create remote Git repository in Visul Studio using visualstudio.com ?

[Attention: This is not full description]
1/ Create online repository
2/ Connect to repo from Visual Studio
3/ Clone repo locally to empty folder
4/ Create solution under repo control (add manually or create from TeamFoundation tab)

2016/05/09

How to add existing resource file to project in c# ?

1. Install Add-in for Visual Studio: File nesting 2. Add root file and designer file 3. Right click on slave file -> File nesting -> Nest item

How to add existing WinForm to poject in C# ?

1. Select project -> Right click -> Add -> Existing item.. -> select root file -> Add as link

2014/08/22

Visual Studio 2013 - 'Operation Could Not Be Completed' when trying to open any View ?

I had two <appSeettings> nodes in config file.
Make only one node.
Maybe you will need restart of VS or system.

2014/08/12

Enabling Visual Studio source code to public use..

Remember:
1. Add all external libraries and all "Copy locale" every .NET .dll
Solution -> Project -> References -> right click .dll -> Copy Local: True

2. ..