Share via


컴파일러 경고(수준 3) CS1700

업데이트: 2007년 11월

오류 메시지

Assembly Name 어셈블리 참조가 잘못되어 확인할 수 없습니다.
Assembly reference Assembly Name is invalid and cannot be resolved

이 경고는 InternalsVisibleToAttribute와 같은 특성을 잘못 지정했음을 나타냅니다.

자세한 내용은 Friend 어셈블리(C# 프로그래밍 가이드)를 참조하십시오.

예제

다음 샘플에서는 CS1700 경고가 발생하는 경우를 보여 줍니다.

// CS1700.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:InternalsVisibleTo("app2, Retargetable=f")]   // CS1700
[assembly:InternalsVisibleTo("app2")]   // OK