|
HI, Have a build process using devenv.com that will compile c# code into assemblies and this works as expected. However I want to sign the assembly built using a key which I already have, is this possible? I want to intergrate this into to the build process...
Started by Rubans on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to use sn.exe , with the -R option
Re-signs... .
See the msdn documentation here.
This is used to sign an assembly using a strong name .
I think the program you are after is sn.exe.
I think what you're looking for is sn.exe, the strong name tool .
|
|
I have a nightly build DOS batch script that invokes devenv.exe to build a solution file. Intermittently I observe a devenv.com crash. I get a DW20.exe "share your pain" dialog.
1) If Debug button is pressed, I am not presented with a usual "Choose your...
Started by GregC on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I finally arrived at an exception type and callstack....
You might try installing Debugging Tools for Windows then use the -iae option (for NTSD/CDB) or the -I option (for WinDBG) to have one of the debuggers from that package be the JIT/AeDebug debugger .
|
|
I want to invoke:
"c:\(...)\devenv.com" foo.sln /build "Debug|Win32"
using cmd.exe. In my experience, cmd.exe either strips out the first pair of quotes (causing the executable to not be found) or the second pair of quotes (causing the pipe character ...
Started by Gili on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Or you can escape it with the circumflex accent ^ :
"c:\(...)\devenv.com" foo.sln /build Debug.
Marks.
|
Ask your Facebook Friends
|
I would like to add a right click menu option to Windows explorer for all .sln files that says "Build." It just needs to call devenv to build the sln without opening it first. What is the easiest way to do this?
Note that I am using Windows Vista, if ...
Started by NotDan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
devenv.com\" %1 /Build Debug".
|
|
In Team City, we are currently using a command line build runner. While it works just fine, we don't get any output shown in the Team City log. We essentially get a notification that the process started, and that the process exited with a particular exit...
Started by Bryan Rowe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Restarting the build server fixed the problem..
Non-error messages usually go to "all messages".
Actually, build log has two parts - important messages and all messages .
|
|
The offending command that msi executes is:
.\devenv.com /command "View.Toolbox" /setup
This fails with Date execution prevention error.
devenv.exe log contains a bunch of errors like this:
<entry> <record>120</record> <time>20...
Started by bh213 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Working with msiexec and forcing update/uninstall and uninstallation of clone detective (for VS.NET) solved this problem . .
Have you sent this information to the developers of the MVC framework? I assume that they are glad for information like this .
|
|
I'm looking for a database of commonly installed Windows software. At minimum I need the name of the software and the executable name, but it'd also be nice to have the publisher and the common installation path, etc. Basically, I'd like to be able to...
Started by Brian Hasden on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is some website that contain some list of software:
http://www.digital-digest.com/software/index.php http... .
You can do some screen scrapping with some website that contain list of software and build yourself a database of all software and publisher .
|
|
Our build server is taking too long to build one of our C++ projects. It uses Visual Studio 2008. Is there any way to get devenv.com to log the time taken to build each project in the solution, so that I know where to focus my efforts?
Improved hardware...
Started by Roger Lipscombe on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
MSBuild project build output verbosity - set to "Detailed", and the build time will appear in the output window
Since your question involves using DevEnv from the command line, I would also suggest using... .
Projects and Solutions....
Options...
Tools...
|
|
I need to build a solution with CAB Project.
As far as I understand I should use devenv.exe in order to build CAB.
Following command line starts devenv.exe in background:
devenv.exe MyActiveX.sln /Rebuild "Release"
Is it possible to run devenv.exe in ...
Started by Vladimir Bezugliy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to run "devenv.com".
Devenv.exe is a GUI you.
You have to run devenv.com in this case which is the console application 1 .
|
|
I'm getting used to using nant for build releases. But I have started to use asp.net MVC, and i choice make the setup for installation with a .vdproj .
But, when I call the: < exec program="${dotnet.dir}/msbuild.exe" commandline='"./Wum.sln" /v:q /...
Started by Luís Custódio on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Studio (devenv.com) for this..
|