If you came from Microsoft Visual C++ world to the C#, I think that you know that we have not stdafx.h in this world therefore ..
If you wanna add a general #define to your project then you must add your #define lines to all cs pages which this is the first thing cross your mind but bill puts another way for you ... ;-)
go to Build section of your project's properties and find the condition compilation symbols and fill it with your #define flags ...
I think that this can help you, too ...
Have fun ;-)
Amastaneh blog is a discussion site on software development, programming, algorithms, software architectures,software run-time errors and solutions from software engineers who love building great softwares.
August 30, 2007
August 24, 2007
Manifest Problem
Problem:
Error 1 general error c10100b1: Failed to load file "xyz.dll". The system cannot find the file specified. mt.exe
Solution:
In our case problem come from difference path between Output File path and Manifest File Path.
We changed those and problems gonna ;-)
- Go to Visual Studio > Menu > Project > Properties and select Linker from tree-view in left
Linker > General > Output File: .\xyz.dll
Linker > Manifest File > Manifest File: .\xyz.intermediate.manifest
Please don't hesitate to contact us and share your experiences ;-D
Error 1 general error c10100b1: Failed to load file "xyz.dll". The system cannot find the file specified. mt.exe
Solution:
In our case problem come from difference path between Output File path and Manifest File Path.
We changed those and problems gonna ;-)
- Go to Visual Studio > Menu > Project > Properties and select Linker from tree-view in left
Linker > General > Output File: .\xyz.dll
Linker > Manifest File > Manifest File: .\xyz.intermediate.manifest
Please don't hesitate to contact us and share your experiences ;-D
Subscribe to:
Posts (Atom)