It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
In my source code I am having sample.vdproj file.But in guidelines they asked to build sample.msi.how to generate .msi files from .vdproj file?it is possible?
Run devenv.exe against your vdproj:
devenv.exe /build Release_or_other_conf yourfile.vdproj
Depending on the type of your vdproj file, building it will generate either an installation package (MSI) or a merge module (MSM).
So, try to build it in Visual Studio and check its output directory. See Setup and Deployment Projects on MSDN for an overview.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to implement the Checkin policy so that comments while check-in the file should be made mandatory. Please let me know, how can I do this in TFS SDK in VS2010.
Thanks a lot in advance.
Amit
A quick Google search pulls up this site (for TFS 2010).
For reference (from the site, not mine):
Find “Team Project Settings”
“Source Control…”
Enter Check-in Policy tab
Add…
Select “Changeset Comments Policy”
OK
Edit:
Apparently you need TFS Power Tools installed (for all developers) for this to work.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have several projects and .cs files developed on other computer.
How can I run all of them on different computer? What if I already have project with same name on it?
Thank you in advance!
Just copy the whole directory of the solution and open in visual studio? Projects aren't linked to the machine they are running on. The only issue you might have is with installed components (like crystal reports or devexpress) or Linked Projects with an absolute location (basically stuff which doesn't reside the the solutions directory)
If you already have projects (with different paths) but with the same name, just make sure you open the right one. if the paths are the same well just like with files you'll overwrite them.
There isn't anything special about source code, it's just files on the machine
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I create either .msi file or setup file from the application I have created in VC# 2010. Please help me.
In the same solution as your executable package, create a "Setup" project
http://msdn.microsoft.com/en-us/library/19x10e5c.aspx
Create a Setup project in Visual Studio 2010-Creating a Setup Project and adding File Types.mp4 - YouTube .
Deployment Tasks and Walkthroughs in msdn is very useful.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
It's always been possible to add references for your project in Visual Studio. These show up under the special "References" folder in the solution explorer. You can also add service references, which also get put under their own special folder. I'd like to create my own reference type, complete with special folder, that other projects can use. What is this called, and where is some good documentation on how to do this?
You mean you want to create a library of classes / a .dll?
http://snippets.dzone.com/posts/show/3861
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
System.Windows.Forms.dll is located in the folder C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727.
I want to download the latest System.Windows.Forms.dll to replace the old one on my machine.
Does anyone know where can I download it?
If you're looking for .NET Framework 4 you can download it from http://msdn.microsoft.com/en-us/netframework/aa569263.aspx.
You can't replace System.Windows.Forms in the 2.0 directory with the 4.0 assembly. When you install the 4.0 framework it will create a new framework install location along side the 2.0 location (c:\windows\Microsoft.NET\Framework\v4.0.30319).