command line compilation

  • Thread starter Thread starter kendf
  • Start date Start date
K

kendf

Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?
 
Have you tried using Microsoft Visual Studio .NET ?
1. install Visual Studio .NET
2. open the solution file (e.g. doubleclick on the file "Exception
Management Quick Start Samples (CS).sln")
3. Select from the main menu: "Build->Build Solution"

I've just tried and it worked fine on my machine.
Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?

Adrian Vinca [MSFT], Developer Division
--------------------------------------------------------------------
This reply is provided "AS IS", without warranty (express or implied).

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
 
By the way - I think it would be nice feature if VS .NET could generate a
makefile from a solution or from a project, to be able to compile it from
the command line on a machine without VS .NET installed.

But I'm afraid this might become obsolete with the advent of MSBuild.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Adrian Vinca said:
Have you tried using Microsoft Visual Studio .NET ?
1. install Visual Studio .NET
2. open the solution file (e.g. doubleclick on the file "Exception
Management Quick Start Samples (CS).sln")
3. Select from the main menu: "Build->Build Solution"

I've just tried and it worked fine on my machine.
Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?

Adrian Vinca [MSFT], Developer Division
--------------------------------------------------------------------
This reply is provided "AS IS", without warranty (express or implied).

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
 
I agree with Dmitriy comments that VS .Net should generate makefile along
its compilation.

By the way, has anyone get it compiled successful with command line?

Dmitriy Lapshin said:
By the way - I think it would be nice feature if VS .NET could generate a
makefile from a solution or from a project, to be able to compile it from
the command line on a machine without VS .NET installed.

But I'm afraid this might become obsolete with the advent of MSBuild.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Adrian Vinca said:
Have you tried using Microsoft Visual Studio .NET ?
1. install Visual Studio .NET
2. open the solution file (e.g. doubleclick on the file "Exception
Management Quick Start Samples (CS).sln")
3. Select from the main menu: "Build->Build Solution"

I've just tried and it worked fine on my machine.
Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?

Adrian Vinca [MSFT], Developer Division
--------------------------------------------------------------------
This reply is provided "AS IS", without warranty (express or implied).

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
 
kendf said:
I agree with Dmitriy comments that VS .Net should generate makefile along
its compilation.

By the way, has anyone get it compiled successful with command line?

I, too, agree that MS should have an option to emit a standard makefile.

In the absence of this, you might want to look at NAnt, free build tool
based on the Java-world's Ant tool.

This page:


http://radio.weblogs.com/0106046/stories/2002/08/10/supportingVsnetAndNant.html

describes a method of using XSLT on the VS.NET project files to
automatically create NAnt build scripts.

I haven't tried it myself (since I have VS.NET), but it looks like a
reasonable method of driving a build from VS.NET project files without
having VS.NET.

By the way - I think it would be nice feature if VS .NET could generate a
makefile from a solution or from a project, to be able to compile it from
the command line on a machine without VS .NET installed.

But I'm afraid this might become obsolete with the advent of MSBuild.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Have you tried using Microsoft Visual Studio .NET ?
1. install Visual Studio .NET
2. open the solution file (e.g. doubleclick on the file "Exception
Management Quick Start Samples (CS).sln")
3. Select from the main menu: "Build->Build Solution"

I've just tried and it worked fine on my machine.


Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?




Adrian Vinca [MSFT], Developer Division
--------------------------------------------------------------------
This reply is provided "AS IS", without warranty (express or implied).

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
 
Back
Top