473,473 Members | 1,974 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Installer problem with VB projects and C# projects

This has worked perfectly for the past year now all the sudden it will not
compile the installer project correctly. All our source code is in a Source
Safe database so every system we do this on should be identicle. On one
system the installer project will compile correctly, but on two others it
will fail with this error.

------ Rebuild All started: Project: Installer, Configuration: Debug ------
Building file 'T:\Current Builds Installers\Benefits
System\Installer.msi'...
ERROR: Could not find file
'C:\reschinidev\benefits\Reporting\obj\Release\Rep orting.dll' 'The system
cannot find the path specified.'

if i remove that project from the installer then it says another one with
the same error (there are about 20 project outputs in the installer) every
thing in the installer is added as a primary output from [project]
(release.net)... as for the projects they have custom build locations for
when they are built. not into the standard project\bin\release folder...
what could be going on? what should i look at? ive tried about everything
including creating a new installer from scratch and still got the same
errors.
Nov 17 '05 #1
3 1870

It looks like the reporting.dll file was referenced directly by the
installer rather than the project output (which could be .exe / .dll etc).
Hence the reason "C:\reschinidev\" is mentioned in the error.

When adding files that are the result of a compilation by your application,
do not "Add Files...", but rather "Add Project Output...". You'll find this
will then reference the DLL in question regardless of the folders in which
you try to build the solution.

The reason it has always worked it seems, is that the project used to exist
on the C:\, but now you've a partition T:\ I presume, on which your projects
are compiled.

Hope that makes sense.
Good luck.
"Brian Henry" <no****@nospam.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
This has worked perfectly for the past year now all the sudden it will not
compile the installer project correctly. All our source code is in a
Source Safe database so every system we do this on should be identicle. On
one system the installer project will compile correctly, but on two others
it will fail with this error.

------ Rebuild All started: Project: Installer, Configuration:
Debug ------
Building file 'T:\Current Builds Installers\Benefits
System\Installer.msi'...
ERROR: Could not find file
'C:\reschinidev\benefits\Reporting\obj\Release\Rep orting.dll' 'The system
cannot find the path specified.'

if i remove that project from the installer then it says another one with
the same error (there are about 20 project outputs in the installer) every
thing in the installer is added as a primary output from [project]
(release.net)... as for the projects they have custom build locations for
when they are built. not into the standard project\bin\release folder...
what could be going on? what should i look at? ive tried about everything
including creating a new installer from scratch and still got the same
errors.

Nov 17 '05 #2
that is how they are added to the installer through Add Project Output... i
actually made a new installer to figure out what was going on with the same
add project output and still get the same error on two systems but no
another one (3 systems total)...
"Dan Bass" <Not Listed> wrote in message
news:ew**************@tk2msftngp13.phx.gbl...

It looks like the reporting.dll file was referenced directly by the
installer rather than the project output (which could be .exe / .dll etc).
Hence the reason "C:\reschinidev\" is mentioned in the error.

When adding files that are the result of a compilation by your
application, do not "Add Files...", but rather "Add Project Output...".
You'll find this will then reference the DLL in question regardless of the
folders in which you try to build the solution.

The reason it has always worked it seems, is that the project used to
exist on the C:\, but now you've a partition T:\ I presume, on which your
projects are compiled.

Hope that makes sense.
Good luck.
"Brian Henry" <no****@nospam.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
This has worked perfectly for the past year now all the sudden it will
not compile the installer project correctly. All our source code is in a
Source Safe database so every system we do this on should be identicle.
On one system the installer project will compile correctly, but on two
others it will fail with this error.

------ Rebuild All started: Project: Installer, Configuration:
Debug ------
Building file 'T:\Current Builds Installers\Benefits
System\Installer.msi'...
ERROR: Could not find file
'C:\reschinidev\benefits\Reporting\obj\Release\Rep orting.dll' 'The system
cannot find the path specified.'

if i remove that project from the installer then it says another one with
the same error (there are about 20 project outputs in the installer)
every thing in the installer is added as a primary output from [project]
(release.net)... as for the projects they have custom build locations for
when they are built. not into the standard project\bin\release folder...
what could be going on? what should i look at? ive tried about everything
including creating a new installer from scratch and still got the same
errors.


Nov 17 '05 #3
If you shut down VS.Net and perform a search on all the solution and
projects file for "C:\reschinidev", what files come up? There should be no
references to anything absolute, but only relative from the solution (.sln)
file.

"Brian Henry" <no****@nospam.com> wrote in message
news:ul**************@TK2MSFTNGP15.phx.gbl...
that is how they are added to the installer through Add Project Output...
i actually made a new installer to figure out what was going on with the
same add project output and still get the same error on two systems but no
another one (3 systems total)...
"Dan Bass" <Not Listed> wrote in message
news:ew**************@tk2msftngp13.phx.gbl...

It looks like the reporting.dll file was referenced directly by the
installer rather than the project output (which could be .exe / .dll
etc).
Hence the reason "C:\reschinidev\" is mentioned in the error.

When adding files that are the result of a compilation by your
application, do not "Add Files...", but rather "Add Project Output...".
You'll find this will then reference the DLL in question regardless of
the folders in which you try to build the solution.

The reason it has always worked it seems, is that the project used to
exist on the C:\, but now you've a partition T:\ I presume, on which your
projects are compiled.

Hope that makes sense.
Good luck.
"Brian Henry" <no****@nospam.com> wrote in message
news:eF**************@TK2MSFTNGP12.phx.gbl...
This has worked perfectly for the past year now all the sudden it will
not compile the installer project correctly. All our source code is in a
Source Safe database so every system we do this on should be identicle.
On one system the installer project will compile correctly, but on two
others it will fail with this error.

------ Rebuild All started: Project: Installer, Configuration:
Debug ------
Building file 'T:\Current Builds Installers\Benefits
System\Installer.msi'...
ERROR: Could not find file
'C:\reschinidev\benefits\Reporting\obj\Release\Rep orting.dll' 'The
system cannot find the path specified.'

if i remove that project from the installer then it says another one
with the same error (there are about 20 project outputs in the
installer) every thing in the installer is added as a primary output
from [project] (release.net)... as for the projects they have custom
build locations for when they are built. not into the standard
project\bin\release folder... what could be going on? what should i look
at? ive tried about everything including creating a new installer from
scratch and still got the same errors.



Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: DE | last post by:
Hello, I have a problem with python builds since some time. On windows, it is not a good idea to link your debug build to release builds of libs and dlls. But python installer gives you...
1
by: indrekm | last post by:
How can I create Application Installer, that copy exe some dll's, register dll's, ask licence agreement, ask show readme.txt etc. I made new Setup project, but how configure it (add licence...
0
by: Chris Morse | last post by:
Hi, I am creating a solution with two projects. Basically, they share a few common class files and forms. I finished one project, and it compiles and runs fine. I just finished bringing in...
3
by: Brian Henry | last post by:
This has worked perfectly for the past year now all the sudden it will not compile the installer project correctly. All our source code is in a Source Safe database so every system we do this on...
5
by: Brian Henry | last post by:
has anyone ever had this happen? I am using VS.NET 2003, and i'll open a form or click on a random object in a form and the whole thing will just lock up and not do anything for a long time with...
0
by: Amit Maheshwari | last post by:
Hello, I need to deploy my web site , can i make any installer for this .. Thanks AMaheshwari
0
by: Robson Siqueira | last post by:
Guys, I am facing a weird problem. When I am debugging a solution with multiple projects, I always receive the message "the breakpoint will not currently be hit. the source code is different...
3
by: Glenn | last post by:
My current classic-ASP site has users, projects, roles and the 2.0 membership looks like a perfect fit, but I'm having trouble finding examples of how to have users that belong to different...
10
by: Scott Townsend | last post by:
So I'm trying to Write a Backend to something and in testing I decided to create a generic front end app that can simulate the passed in Data. So I have 2 projects in my solution, though I'm...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.