我将一个项目从一台计算机复制到另一台计算机,但是,当我开始Unity时,我遇到了很多错误,都在说几乎相同的事情。
在线研究,什么也没发现。在我移动它之前,项目在不同的计算机上都很好。
D:/Unity Games/UYW/Library/PackageCache/com.unity.textmeshpro@2.0.0/Scripts/Runtime/TMPro_UGUI_Private.cs(2028,130): error CS1644: Feature `out variable declaration' cannot be used because it is not part of the C# 4.0 language specification
不应该给任何错误。
对于您提供的错误:
转到Edit
> Project Settings
> Player
,然后选择Other Settings
选项卡,然后在Configuration
中尝试将Scripting Runtime Version
切换到.NET 4.x Equivalent
。
您还可以使用文本编辑器编辑Assembly-CSharp.csproj
,然后将<LangVersion>4</LangVersion>
更改为"必需C#版本",例如。<LangVersion>6</LangVersion>