GAC
-
Does anyone know how to install an application that you created on another computer using a disk or any other method? I clicked publish, distribute on a CD rom, then when i try to install it on some computers there is a message that pops up saying "Unable to install or run the application. The application requires that assembly System.Core Version 3.5.0.0 be installed in the Global Assembly Cache (GAC)" Does anyone know what that means? It only happens on some computers, some are able to install the software. Is there anyway to install the program without needing that GAC thing? Thanks
-
Does anyone know how to install an application that you created on another computer using a disk or any other method? I clicked publish, distribute on a CD rom, then when i try to install it on some computers there is a message that pops up saying "Unable to install or run the application. The application requires that assembly System.Core Version 3.5.0.0 be installed in the Global Assembly Cache (GAC)" Does anyone know what that means? It only happens on some computers, some are able to install the software. Is there anyway to install the program without needing that GAC thing? Thanks
Hi, System.Core 3.5.0.0 is part of .NET 3.5 which seems to be a prerequisite of your app. There are two ways to go now: - maybe you don't really need .NET features beyond .NET 2.0 and could rebuild your app for .NET 2.0, giving it a much bigger probability of running on modern PCs (you can choose the target .NET version in your project settings); - or you keep the app as is, and make sure .NET 3.5 is installed; creating an installer would allow you to check for that automatically. :)
Luc Pattyn
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
Local announcement (Antwerp region): Lange Wapper? 59.24% waren verstandig genoeg om NEEN te stemmen; bye bye viaduct.
-
Hi, System.Core 3.5.0.0 is part of .NET 3.5 which seems to be a prerequisite of your app. There are two ways to go now: - maybe you don't really need .NET features beyond .NET 2.0 and could rebuild your app for .NET 2.0, giving it a much bigger probability of running on modern PCs (you can choose the target .NET version in your project settings); - or you keep the app as is, and make sure .NET 3.5 is installed; creating an installer would allow you to check for that automatically. :)
Luc Pattyn
I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages
Local announcement (Antwerp region): Lange Wapper? 59.24% waren verstandig genoeg om NEEN te stemmen; bye bye viaduct.