How to Sync The Silverlight and Web Projects - silverlight

In my Silverlight solution I have a edsv project and a edsv.web project. If I make edsv the startup project it works ok. If I make edsv.web the startup project, it executes a much earlier version of the code.
The setup project need to use the .web project, right? So my install kit reflects the wrong code. How do I get the projects in sync?

I got the solution in another forum, please see http://social.msdn.microsoft.com/Forums/silverlight/en-US/8293acb7-a2dc-4c04-92f7-150830cc355a/how-to-sync-the-silverlight-and-web-project
Bob

Related

Building workspace vs uploading cartridges in eclipse in code deployment over sandbox

I am deploying a code over sandbox from eclipse, I'm new to salesforce development.
what is the diff between building workspace and uploading cartridges in eclipse.
I appreciate all the help that i can get, thanks in advance
There are no "cartidges" in Salesforce documentation. Are you sure you're developing salesforce code? Maybe you're working on some Java integration? Or maybe you mean packages? zip files with package.xml and source code?
And Eclipse development model is outdated now, all the cool kids moved on to sfdx + visual studio code. What you're doing still works (it uses "metadata api") but you're consciously using old tools, depriving yourself from newer, faster toys. You can read more about metadata api style of deployments in https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_intro.htm
Now... If you ask about "why do I bother with doing deployments if in sandbox I can just edit the class/trigger directly and save"... well - you can't in production. You can't just go and edit code straight on production, even in the setup the button simply isn't there. It has to be a deployable package, it has to run unit tests during deploy (they need to pass, the code coverage has to be at least 75%). So you make a package when you're really ready to go to prod

Program requires .net5 SDK, why?

A few days ago I updated a wpf program from .net4.8 to .net5. Some users now get an error message that can be seen in the picture.
These users have .NET Desktop Runtime 5.0.x installed. Apparently that is not enough. The program will not work until the SDK is installed.
My question now is, is there any way I can quickly tell whether I'm using classes or methods that need an SDK?
Do I have to adjust the publish config?
I would not like to deliver the whole framework with the program together.
Appearantly your app has a dependency on the ASP.NET runtime as well.
You will either have to download and install this one separately or remove any references to it from your app.
Check for any framework reference to Microsoft.AspNetCore.App in your project files (Project Sdk="Microsoft.NET.Sdk.Web">) or under Dependencies->Frameworks in Visual Studio.

MvvmCross Network Plugin WPF

I am working on an mvvmcross solution. I am making a wpf project as well to speed up the core development. Today I ran into an issue running a wpf project using a core that has the network plugin. When the setup.Initialize() is called I end up with the exception "Could not load file or assembly 'Cirrious.MvvmCross.Plugins.Network.Wpf' or one of its dependencies. The system cannot find the file specified.". I did include the network plugin from NuGet to my wpf project as well. Anyone know what might be the issue here?
Thank you!
i only added the wpf version of that plugin 5 days ago - https://github.com/slodge/MvvmCross/commits/TibetBinding/Plugins/Cirrious/Network/Cirrious.MvvmCross.Plugins.Network.Wpf
It hasn't yet made it to nuget - when it will depends on my work schedule and my hotel wifi - 'soon' is all I can say.
You can build it for yourself if you need it urgently - on the tibetbinding branch (see link above)

Winforms Application Setup Creation in VS2010

I know that this is a very stupid question, but I have not been able to find a definitive Guide to creating a basic Installer for my windows forms application. I know we have to use Setup and Deployment Projects in VS2010 but have not been able to find any step by step guide for it.
If possible please guide me regarding the same.
Thanks
Many Winforms projects don't require an installer. Just copy the files in the Release folder, formally named "XCopy deployment". The walkthrough for a Setup and Deployment project is here.
I'm currently learning how to do setup projects as well.. I found a couple of sites that helped me to get off the ground and have a basic installer. I know the first link is from way back in 2005, but it still helped.
http://www.simple-talk.com/dotnet/visual-studio/getting-started-with-setup-projects/
http://www.eggheadcafe.com/tutorials/aspnet/dcc5ab62-b875-4852-9e34-8bc2794e4fb8/c--create-setup-project.aspx

WPF application is crashing after publish

I've upgraded WPF application to Visual Studio 2k8. App is .NET 3.0 which is set as a platform in the project.
If I build project & release confiuguration, app is running well.
If I try to publish it using ClickOnce, it is crashing because xaml resources couldn't be find.
Any idea?
Thank you very much.
P.S. It seem that XAML resources aren't really included in Resources in the assembly. If assemble is just rebuilded (without Publish) everything is ok and XAML are included in resources.
Have a look at the One Click Deployment options on your project.
On the Publish tab, have a look at the Application Files section.
Some files might not have been included.
It seems I solved this problem.
My application has been upgraded from V2k5 to V2k8.
If .NET 3.0 is target platform, the problem exists.
If .NET 3.5 is target platform, problem solved.
Thank you for your collaboration.

Resources