【发布时间】:2017-11-23 08:38:05
【问题描述】:
您好尝试在 .net core 2.0 中进行本地化 我关注了这篇文章 https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization 视觉工作室 2017 视窗 10
在Resources中添加这些文件(用于视图索引)并编译后
我在构建时遇到了他的错误
Severity Code Description Project File Line Suppression State
Error CS0579 Duplicate 'global::System.CodeDom.Compiler.GeneratedCodeAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en-US.Designer.cs 22 Active
Error CS0579 Duplicate 'global::System.Diagnostics.DebuggerNonUserCodeAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en-US.Designer.cs 23 Active
Error CS0579 Duplicate 'global::System.Runtime.CompilerServices.CompilerGeneratedAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en-US.Designer.cs 24 Active
Error CS0101 The namespace 'Mnp.Resources.Views.Home' already contains a definition for 'Index' Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en-US.Designer.cs 25 Active
Error CS0111 Type 'Index' already defines a member called '.ctor' with the same parameter types Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en-US.Designer.cs 32 Active
Error CS0579 Duplicate 'global::System.CodeDom.Compiler.GeneratedCodeAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en.Designer.cs 22 Active
Error CS0579 Duplicate 'global::System.Diagnostics.DebuggerNonUserCodeAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en.Designer.cs 23 Active
Error CS0579 Duplicate 'global::System.Runtime.CompilerServices.CompilerGeneratedAttribute' attribute Mnp E:\Websites\Developing\Mnp\Mnp\BudgetT\Resources\Views\Home\Index.en.Designer.cs 24 Active
我添加的文件有错吗?
【问题讨论】:
标签: .net asp.net-core