You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since .NET 5, the <InternalsVisibleTo Include="MyProject.Assmebly" /> item type has been supported to generate the System.Runtime.CompilerServices.InternalsVisibleTo for the output assembly. The definition for this item type should be in the common types schema file so that editors (like Visual Studio) provide statement completion and a QuickInfo tooltip for it.
<xs:elementname="InternalsVisibleTo"substitutionGroup="msb:Item">
<xs:annotation>
<xs:documentation>
<!-- _locID_text="InternalsVisibleTo" _locComment="" -->Specifies that types that are ordinarily visible only within the assembly are visible to the specified assemblies.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extensionbase="msb:SimpleItemType">
<xs:attributename="Include"type="xs:string">
<xs:annotation>
<xs:documentation>
<!-- _locID_text="InternalsVisibleTo_Include" _locComment="" -->The name of the friend assembly to make internal types visible to, e.g. Microsoft.AspNetCore.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributename="PublicKey"type="xs:string"use="optional">
<xs:annotation>
<xs:documentation>
<!-- _locID_text="InternalsVisibleTo_PublicKey" _locComment="" -->Optional public key associated with the strong name signature of the friend assembly.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
The text was updated successfully, but these errors were encountered:
Fixes#6777
Since .NET 5, the <InternalsVisibleTo Include="MyProject.Assmebly" /> item type has been supported to generate the System.Runtime.CompilerServices.InternalsVisibleTo for the output assembly. The definition for this item type should be in the common types schema file so that editors (like Visual Studio) provide statement completion and a QuickInfo tooltip for it.
Since .NET 5, the
<InternalsVisibleTo Include="MyProject.Assmebly" />
item type has been supported to generate theSystem.Runtime.CompilerServices.InternalsVisibleTo
for the output assembly. The definition for this item type should be in the common types schema file so that editors (like Visual Studio) provide statement completion and a QuickInfo tooltip for it.Example use (.csproj)
Schema file update
The text was updated successfully, but these errors were encountered: