Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused ExportFontAttribute.EmbeddedFontResourceId property #5010

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,6 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EmbeddedFontResourceId">
<MemberSignature Language="C#" Value="public string EmbeddedFontResourceId { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string EmbeddedFontResourceId" />
<MemberSignature Language="DocId" Value="P:Microsoft.Maui.Controls.ExportFontAttribute.EmbeddedFontResourceId" />
<MemberSignature Language="F#" Value="member this.EmbeddedFontResourceId : string with get, set" Usage="Microsoft.Maui.Controls.ExportFontAttribute.EmbeddedFontResourceId" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Maui.Controls.Core</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FontFileName">
<MemberSignature Language="C#" Value="public string FontFileName { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string FontFileName" />
Expand Down
2 changes: 0 additions & 2 deletions src/Controls/src/Core/ExportFontAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public ExportFontAttribute(string fontFileName)
FontFileName = fontFileName;
}

/// <include file="../../docs/Microsoft.Maui.Controls/ExportFontAttribute.xml" path="//Member[@MemberName='EmbeddedFontResourceId']/Docs" />
public string EmbeddedFontResourceId { get; set; }
/// <include file="../../docs/Microsoft.Maui.Controls/ExportFontAttribute.xml" path="//Member[@MemberName='FontFileName']/Docs" />
public string FontFileName { get; }
}
Expand Down