Deployment with .mdb
-
I am using c# Express and trying to deploy a program that uses an .mdb file. It tries to use the same path that the original was in and the installation fails since that directory does not exist. How do I get it to place it, and look for it, in the same directory as the program?
David Wilkes
-
I am using c# Express and trying to deploy a program that uses an .mdb file. It tries to use the same path that the original was in and the installation fails since that directory does not exist. How do I get it to place it, and look for it, in the same directory as the program?
David Wilkes
Using a deployment project? I simply add it to the application folder.
-
I am using c# Express and trying to deploy a program that uses an .mdb file. It tries to use the same path that the original was in and the installation fails since that directory does not exist. How do I get it to place it, and look for it, in the same directory as the program?
David Wilkes
-
manually creating manifest and application files using mageui.exe. I had to do it this way in my plugin-like application because the project deployment does't include not referenced files like plugin dlls and I guess it won't include an mdb file..
But you can tell it to.
-
Using a deployment project? I simply add it to the application folder.
Thanks for the reply!:-D I have been beating on this for a while now. When I add the MDB to the project it will not install. I get an error “Can not start the application”. When I look at the details I see this; COMPONENT STORE TRANSACTION FAILURE SUMMARY * Transaction at [1/19/2007 11:43:18 AM] - Staging of a component file (CDMAConverter.mdb) did not succeed. - Staging of a component file (Gamorrean.ico) did not succeed. - Staging of a component (CDMA_Converter.exe.genman) did not succeed. - Staging of a component file (CDMA_Converter.exe) did not succeed. - Installation of deployment (file:///E:/CDMA_Converter.application#CDMA_Converter.application, Version=1.0.2.0, Culture=neutral, PublicKeyToken=2022ca6c0b1c5b65, processorArchitecture=msil) did not succeed. - Setting one or more of the deployment metadata did not succeed. And this in the “Transactions Details” + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - Status: Failed - HRESULT: 0x80070057 - File: CDMAConverter.mdb
David Wilkes