strange build error

J

Jakub Cermak

Hi all, when I try to build my solution in Release mode (debug mode is
ok), I get following error:
Error 74 Could not find file 'Microsoft.Windows.CommonLanguageRuntime,
Version=2.0.50727.0'.
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets 2071
9 IrcBotService
Double click opens Microsoft.Common.Targets file at line 2071, on code
Code:
<GenerateApplicationManifest
AssemblyName="$(_DeploymentApplicationManifestIdentity)"
AssemblyVersion="$(_DeploymentManifestVersion)"
ConfigFile="@(AppConfigWithTargetPath)"
ClrVersion="$(ClrVersion)"
Dependencies="@(_DeploymentManifestDependencies)"
Description="$(Description)"
EntryPoint="@(_DeploymentManifestEntryPoint)"
Files="@(_DeploymentManifestFiles)"
IconFile="@(_DeploymentManifestIconFile)"
InputManifest="@(_DeploymentBaseManifestWithTargetPath)"
IsolatedComReferences="@(ResolvedIsolatedComModules)"
ManifestType="$(_DeploymentManifestType)"
MaxTargetPath="$(MaxTargetPath)"
OutputManifest="@(ApplicationManifest)"
OSVersion="$(OSVersion)"
Platform="$(PlatformTarget)"
TargetCulture="$(TargetCulture)"
TrustInfoFile="@(_DeploymentIntermediateTrustInfoFile)">

This happens at 2 projects, both of them depends on another project in
solution.
How can I get rid of this error? I don't know what I did wrong, I
haven't use Release mode at this solution before :( In Debug mode
everyhing is ok ...
I tried to google something, but I failed :(

--
Best regards,

Jakub Cermak
ICQ 159971304
http://cermi.wz.cz
 
G

Guest

I'm getting a "GenerateApplicationManifest" task failed...
seeminly due to a file path length that gets set somewhere I don't know? It
won't let me build at all due to this one error?

Any ideas?
 
Top