Setting up Visual Studio 2005

Methos

HoF Quattromaster
Super Moderator
Hall of Fame Staff
Supporter
Joined
Jan 1, 2005
Messages
13,302
Location
Missouri
I'm trying to setup my mod project in Visual Studio 2005 and I have been using some of the information from the [SDK] Using Microsoft Visual C++ 2005 Express Edition. It's not working with my version.

How do I set up a project for this mod?

If you need more info to answer my correctly, please say so and I'll provide what I can. Thanks!
 
I might have figured it out. It's compiling right now.

Edit: Received these errors:

1>------ Build started: Project: 3.13, Configuration: Final_Release Win32 ------
1>Performing Makefile project actions
1>Microsoft (R) Program Maintenance Utility Version 8.00.50727.42
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>NMAKE : fatal error U1052: file 'Final_Release' not found
1>Stop.
1>Project : error PRJ0019: A tool returned an error code from "Performing Makefile project actions"
1>Build log was saved at "file://g:\Documents and Settings\Methos\My Documents\HoF Staff\Working\3.13\Final_Release\BuildLog.htm"
1>3.13 - 2 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 
Everything appears correct, so I'm guessing its an issue due to different versions. The instructions were for the free edition, not the one I'm using. The error is saying missing file, yet as you'll see from my setup images below, I have the correct codes. Anyone have any ideas?

edit_solution.JPG


edit_project_configurations.JPG


properties.JPG
 
Maybe this will help:

Creating temporary file "G:\DOCUME~1\DUSTIN~1\LOCALS~1\Temp\BAT00000157402196.bat" with contents
[
@echo off

nmake Final_Release

if errorlevel 1 goto VCReportError

goto VCEnd

:VCReportError

echo Project : error PRJ0019: A tool returned an error code from "Performing Makefile project actions"

exit 1

:VCEnd
]
Creating command line "G:\DOCUME~1\DUSTIN~1\LOCALS~1\Temp\BAT00000157402196.bat"
 
Back
Top Bottom