AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# Compiler Warning (level 3) CS1700 程序集引用 Assembly Name 无效,无法解析 此警告指示未正确指定特性(如 [InternalsVisibleToAttribute](https://msdn.microsoft.com/zh-cn/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx))。 有关更多信息,请参见[友元程序集(C# 和 Visual Basic)](https://msdn.microsoft.com/zh-cn/library/0tke9fxk.aspx)。 下面的示例生成 CS1700。 ``` // CS1700.cs // compile with: /target:library using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("app2, Retargetable=f")] // CS1700 [assembly:InternalsVisibleTo("app2")] // OK ```