I have an issue with building a project using the MSBuild (ver 4) from the command line when declaring lambda expression like this:
Private Sub Foo(ByVal s As String)
Dim WL = Sub(str As String)
If Not String.IsNullOrEmpty(str) Then
Console.WriteLine(str)
End If
End Sub
WL(s)
End Sub
The error occurs at second line of code above:
error BC30201: Expression expected.
In Visual Studio 2010 it compiles just fine.
MSBuild BAT file:
SET MSBUILD="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
SET LogDll="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Microsoft.Build.Engine.Dll"
SET VSBuildSolName="d:\Projects\Source\Test.sln"
SET VSBuildConfigNameD="Debug"
SET VSBuildConfigNameR="Release"
SET VSBuildErrFileNameD="d:\Projects\build\Test_errD.txt"
SET VSBuildErrFileNameR="d:\Projects\build\Test_errR.txt"
CALL %MSBUILD% %VSBuildSolName% /p:Configuration=%VSBuildConfigNameD% /logger:FileLogger,%LogDll%;LogFile=%VSBuildErrFileNameD% /verbosity:normal /P:NOWARN= /tv:3.5
Option strict: Off Option infer: OnI just have checked the issue for new test solution from scratch and there are no errors. – KorVet Jul 25 '11 at 9:41