473,761 Members | 10,684 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Assembly linker could not be launched?!??! Help please!

I have a problem using VS .NET 2003. When compiliing my application
(a Content Management Server) I get the following error:

"Satellite build for culture 'en-US' failed. Assembly linker could
not be launched. The system cannot find the specified file."

What specified file?! I only found one or two other people on the
internet with this problem but no one replied to their posts. I have
no idea what this means, please guide me in the correct direction!!
Is it a resource file? Assembly file?? I checked all the assembly
files, they are fine! I have no idea!
Jul 21 '05 #1
2 1761
It seems that you have been playing with the Localizable property of your
form without understanding what it is used for. Try setting the localizable
setting to false. If this doesn't work then go to directory were your
project is located and delete any resx files that the "en" suffix. Look for
any folders inside the bin\Debug or bin\Release directories that are named
"en" or "en-us". Delete them. If these doesn't work then you'll have to make
a new project and add the .cs files that you need since everything.

If you're interested in what localization is and how to use it then look for
it in the MSDN library.

"James" <jw*@tcsc.com > wrote in message
news:d6******** *************** ***@posting.goo gle.com...
I have a problem using VS .NET 2003. When compiliing my application
(a Content Management Server) I get the following error:

"Satellite build for culture 'en-US' failed. Assembly linker could
not be launched. The system cannot find the specified file."

What specified file?! I only found one or two other people on the
internet with this problem but no one replied to their posts. I have
no idea what this means, please guide me in the correct direction!!
Is it a resource file? Assembly file?? I checked all the assembly
files, they are fine! I have no idea!

Jul 21 '05 #2
I didn't change any localizable property, but a program might have
(I'm actually trying to recover a Content Management Server and
Commerce Server-based site, trying to add things into the project and
such). So the whole project is quite messy, and I don't know where to
begin looking. I deleted all the files with the .en-US extension, but
that didn't work. I'm still looking for the localizable property
(working in C#). If I have to I will create a new project and try to
add in everything.. this is a large site, and that would be a lot of
work!

Thanks for your help!
James

"Carlos Kirkconnell" <ca*****@integr asofthn.com> wrote in message news:<eu******* *******@TK2MSFT NGP12.phx.gbl>. ..
It seems that you have been playing with the Localizable property of your
form without understanding what it is used for. Try setting the localizable
setting to false. If this doesn't work then go to directory were your
project is located and delete any resx files that the "en" suffix. Look for
any folders inside the bin\Debug or bin\Release directories that are named
"en" or "en-us". Delete them. If these doesn't work then you'll have to make
a new project and add the .cs files that you need since everything.

If you're interested in what localization is and how to use it then look for
it in the MSDN library.

"James" <jw*@tcsc.com > wrote in message
news:d6******** *************** ***@posting.goo gle.com...
I have a problem using VS .NET 2003. When compiliing my application
(a Content Management Server) I get the following error:

"Satellite build for culture 'en-US' failed. Assembly linker could
not be launched. The system cannot find the specified file."

What specified file?! I only found one or two other people on the
internet with this problem but no one replied to their posts. I have
no idea what this means, please guide me in the correct direction!!
Is it a resource file? Assembly file?? I checked all the assembly
files, they are fine! I have no idea!

Jul 21 '05 #3

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

Similar topics

5
2195
by: Edward Diener | last post by:
This has occurred in MC++, but since there is very little response on that NG, I am also reporting it here in the hope that someone can find me a workaround, and report it to MS. If a __value class with an event is put into an assembly and a __gc class in another assembly, which has an instance of the __value class as a data member, attempts to attach its own event handler to the __value class's event, everything compiles correctly but...
0
2419
by: Sylvain Demers | last post by:
Hi, Yesterday, I had a problem with Visual Studio.NET. It was impossible to build my solution. I had a lot of errors like: Satellite build for culture 'fr' failed. The assembly linker could not be launched. The file exits. After using FileMon from SysInternals.com, I saw that devenv.exe was trying to create files in a temp directory and it was failing. It
2
6686
by: Mike Nau | last post by:
I've been trying to get a concrete answer to this for the last few days, but have come up short. I'm hoping someone here can help. Is there a way to take a set of c# modules (c# code compiled using csc with the /t:module option) and combine them into a single assembly using the assembly linker or any other tool. For example I have the following compiled c# modules: foo1.netmodule foo2.netmodule
0
5544
by: Namratha Shah \(Nasha\) | last post by:
Hi All, Assembly linker is a tool which is used to create an assembly by combining one or more .netmodules and resource files. In simple words an .netmodule is an IL file that does not have manifest in it .... you can say its an assembly without the manifest ... and hence a non -assembly file containing IL code. In the yesterday's example we saw how we can create the .resources file
0
1193
by: Edward Diener | last post by:
If a __value class with an event is put into an assembly, and a __gc class in another assembly attempts to attach its own event handler to the __value class's event of an embedded object of the __value class type, everything compiles correctly but the Linker puts out error "LINK : error LNK2020: unresolved token (0A000003) AValueClassEvent" followed by "LINK : fatal error LNK1120: 1 unresolved externals". If the __value class is in the same...
13
4150
by: Bern McCarty | last post by:
I have run an experiment to try to learn some things about floating point performance in managed C++. I am using Visual Studio 2003. I was hoping to get a feel for whether or not it would make sense to punch out from managed code to native code (I was using IJW) in order to do some amount of floating point work and, if so, what that certain amount of floating point work was approximately. To attempt to do this I made a program that...
2
370
by: James | last post by:
I have a problem using VS .NET 2003. When compiliing my application (a Content Management Server) I get the following error: "Satellite build for culture 'en-US' failed. Assembly linker could not be launched. The system cannot find the specified file." What specified file?! I only found one or two other people on the internet with this problem but no one replied to their posts. I have no idea what this means, please guide me in...
3
3960
by: dfranzen | last post by:
Hi *, I'm in the process of porting an ANSI C++ project from a UNIX platform to .NET. After "getting rid of" some platform-specific stuff I managed to compile the first two libraries into mixed assemlies (DLLs) using MSVC8 (VS2005) with the /clr option. However, I get hundreds of linker errors (mostly LNK2028) because assembly B uses native types defined in assembly A. I could easily get rid of the problem by #including the original source...
2
1439
by: =?Utf-8?B?aWduaGVucnk=?= | last post by:
In my solution, I have several C# and C++ projects. Since I need them to produce multifile assembly, I use C# and C++ command line compiler. To avoid compile error caused by redundant code in AssemblyInfo.cs in each of the projects, I then created GlobalAssemblyInfo.cs at the solution level, which contains copyright, version number, etc, and have it shared among the projects. I manage to build the solution and get several netmodules and one...
0
9333
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9945
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9900
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8768
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6599
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5214
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3863
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 we have to send another system
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2733
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.