Getting more detail on application failure when using ClickOnce to installHow do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?The breakpoint will not currently be hit. No symbols have been loaded for this document in a Silverlight applicationUnable to copy file, Access to the path is deniedClickOnce application won't accept command-line argumentsValidation failed for one or more entities. See 'EntityValidationErrors' property for more detailsHow to manually register ClickOnce file associations after installation?How to delete all data when uninstalling a ClickOnce application?Best way to deploy Visual Studio application that can run without installingDynamically get paths to project-folders in ClickOnceDifferent installation folder structure in ClickOnce

Struggling with cyclical dependancies in unit tests

Polyhedra, Polyhedron, Polytopes and Polygon

How could Nomadic scholars effectively memorize libraries worth of information

(3 of 11: Akari) What is Pyramid Cult's Favorite Car?

Is it error of law to judge on less relevant case law when there is much more relevant one?

Can you place a support header in the ceiling?

Name These Animals

8086 stack segment and avoiding overflow in interrupts

What do I do with a party that is much stronger than their level?

An easy decision when to use a spline or a polynomial

How can I kill my goat?

Compound Word Neologism

Do 3/8 (37.5%) of Quadratics Have No x-Intercepts?

Why isn't there any 9.5 digit multimeter or higher?

How likely is fragmentation on a table with 40000 products likely to affect performance

How do you pronounce "Hain"?

Mechanics of Horizontal Stretching and Shrinking

Why force the nose of 737 Max down in the first place?

Wand of the War Mage spellcasting focus and bonus interaction with multiclassing

What is this 4 sharp symbol and what does it mean?

Do the books ever say oliphaunts aren’t elephants?

Why did House of Representatives need to condemn Trumps Tweets?

Telling manager project isn't worth the effort?

Why is it considered acid rain with pH <5.6?



Getting more detail on application failure when using ClickOnce to install


How do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?The breakpoint will not currently be hit. No symbols have been loaded for this document in a Silverlight applicationUnable to copy file, Access to the path is deniedClickOnce application won't accept command-line argumentsValidation failed for one or more entities. See 'EntityValidationErrors' property for more detailsHow to manually register ClickOnce file associations after installation?How to delete all data when uninstalling a ClickOnce application?Best way to deploy Visual Studio application that can run without installingDynamically get paths to project-folders in ClickOnceDifferent installation folder structure in ClickOnce






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have an app that runs fine when I run using Debug in Visual Studio 2017. I DID have to manually add dll's to the bin folder as I am using some required unmanaged code and that unmanaged code was not dining files.



I am now trying to deploy the app using ClickOnce. My app is silently crashing when it tried to run. Using Event Viewer I can see the following:




Exception Info: System.IO.FileNotFoundException



at ThermalVision.CameraDiscovery..ctor()



at ThermalVision.Form1..ctor()



at ThermalVision.Program.Main()




CameraDiscovery is a class that I wrote. How do I tell exactly WHAT file cannot be found?










share|improve this question
























  • In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

    – Eric Snyder
    Mar 27 at 15:54

















0















I have an app that runs fine when I run using Debug in Visual Studio 2017. I DID have to manually add dll's to the bin folder as I am using some required unmanaged code and that unmanaged code was not dining files.



I am now trying to deploy the app using ClickOnce. My app is silently crashing when it tried to run. Using Event Viewer I can see the following:




Exception Info: System.IO.FileNotFoundException



at ThermalVision.CameraDiscovery..ctor()



at ThermalVision.Form1..ctor()



at ThermalVision.Program.Main()




CameraDiscovery is a class that I wrote. How do I tell exactly WHAT file cannot be found?










share|improve this question
























  • In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

    – Eric Snyder
    Mar 27 at 15:54













0












0








0








I have an app that runs fine when I run using Debug in Visual Studio 2017. I DID have to manually add dll's to the bin folder as I am using some required unmanaged code and that unmanaged code was not dining files.



I am now trying to deploy the app using ClickOnce. My app is silently crashing when it tried to run. Using Event Viewer I can see the following:




Exception Info: System.IO.FileNotFoundException



at ThermalVision.CameraDiscovery..ctor()



at ThermalVision.Form1..ctor()



at ThermalVision.Program.Main()




CameraDiscovery is a class that I wrote. How do I tell exactly WHAT file cannot be found?










share|improve this question














I have an app that runs fine when I run using Debug in Visual Studio 2017. I DID have to manually add dll's to the bin folder as I am using some required unmanaged code and that unmanaged code was not dining files.



I am now trying to deploy the app using ClickOnce. My app is silently crashing when it tried to run. Using Event Viewer I can see the following:




Exception Info: System.IO.FileNotFoundException



at ThermalVision.CameraDiscovery..ctor()



at ThermalVision.Form1..ctor()



at ThermalVision.Program.Main()




CameraDiscovery is a class that I wrote. How do I tell exactly WHAT file cannot be found?







c# clickonce






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 19:32









Eric SnyderEric Snyder

3543 silver badges14 bronze badges




3543 silver badges14 bronze badges















  • In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

    – Eric Snyder
    Mar 27 at 15:54

















  • In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

    – Eric Snyder
    Mar 27 at 15:54
















In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

– Eric Snyder
Mar 27 at 15:54





In made some progress. I had to add all libraries in the third party libraries to my project as an existing item. The clickonce then adds those to the install directory. I know I have extra dll's that I don't need but at lease the app finds the dll's in the installation folder and runs.

– Eric Snyder
Mar 27 at 15:54












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55364975%2fgetting-more-detail-on-application-failure-when-using-clickonce-to-install%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55364975%2fgetting-more-detail-on-application-failure-when-using-clickonce-to-install%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript