16

我正在使用 Visual Studio 15.6.3、dotnet SDK 2.1.102。

最近,(可能在更新之后)我发现了一个 dotnet 构建错误,该错误出现在一个包含外语资源的项目中。错误信息如下:

C:\Program Files\dotnet\sdk\2.1.102\Microsoft.Common.CurrentVersion.targets(3570,5): error MSB4062: The "Microsoft.Build.Tasks.AL" task could not be loaded from the assembly Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.  Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.

我可以提供重现此错误的步骤:

  1. 在 Visual Studio 中创建一个 C# 控制台应用程序,将其命名为DotNetBugTest.
  2. 编辑项目属性,在构建下,取消选中“首选 32 位”(控制台应用程序工件)。
  3. 在项目的根级别添加资源,调用它Messages.resx
  4. 添加一个字符串资源,调用它A,然后给它 text English
  5. 在项目的根级别添加另一个资源,调用它Messages.fr-CA.resx
  6. 添加相同的字符串资源,调用它A,并给它 text French
  7. 现在在Program类中,添加以下内容:

    class Program
    {
        static void Main(string[] args)
        {
            var rm = new ResourceManager("DotNetBugTest.Messages", typeof(Program).Assembly);
    
            var en = CultureInfo.CreateSpecificCulture("en-US"); 
            var fr = CultureInfo.CreateSpecificCulture("fr-CA"); 
    
            Console.WriteLine($@"en={rm.GetString("A", en)}");
            Console.WriteLine($@"fr={rm.GetString("A", fr)}");
    
            Console.ReadKey();
        }
    }
    

这在 Visual Studio 中运行良好。输出:

en=English
fr=French

但是如果你尝试从命令行编译它:

dotnet build --configuration Debug

你得到错误。

有人知道如何解决这个问题吗?甚至建议去哪里看?

4

1 回答 1

2

看来你必须使用 MSBuild 来构建这个项目。

另见这篇文章: https ://blog.codeinside.eu/2019/11/30/build-dotnetcore-apps-with-msbuild-to-avoid-strange-netframeworkbased-errors/

于 2020-05-15T09:00:29.440 回答