How Can I ? ? ?

  • Thread starter Thread starter Kate Luu
  • Start date Start date
K

Kate Luu

after I installed the .NET frame work, I try to run some XML project but I
cannot, because no *.sln file for those project, they are just *.mak file.
How can I start the project with those *.mak files. Any help is deeply
appreciated. Thanks you all in advance...

the file location is: C:\Program Files\Microsoft Visual Studio
..NET\FrameworkSDK\Samples\QuickStart\howto\samples\xml\...
 
Kate,

.mak files are for NMAKE, which is a separate tool from Visual Studio.
If you want to build your components in VS, then you will have to create a
project and then add the files to the project. The .mak file is not
compatable with VS (from what I remember).

However, you should be able to use the .mak file with NMAKE still.

Hope this helps.
 
Thanks you so much for your help, I'm very appreciated. Have a nice day...

Kate

Nicholas Paldino said:
Kate,

.mak files are for NMAKE, which is a separate tool from Visual Studio.
If you want to build your components in VS, then you will have to create a
project and then add the files to the project. The .mak file is not
compatable with VS (from what I remember).

However, you should be able to use the .mak file with NMAKE still.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- nick(dot)paldino=at=exisconsulting<dot>com

Kate Luu said:
after I installed the .NET frame work, I try to run some XML project but I
cannot, because no *.sln file for those project, they are just *.mak file.
How can I start the project with those *.mak files. Any help is deeply
appreciated. Thanks you all in advance...

the file location is: C:\Program Files\Microsoft Visual Studio
.NET\FrameworkSDK\Samples\QuickStart\howto\samples\xml\...
 
Back
Top