I've create a Nuspec file to build my nuget package for a control to Xamarin.Forms.
I want add a .ttf file into Assets/Fonts I've been able to add it using:
<file src="ButtonCircle\ButtonCircle.FormsPlugin.UWP\Assets\Fonts\MaterialIcons-Regular.ttf" target="content\Assets\Fonts" />
but only added to PCL, Android and iOS projects, it's not possible to add to the UWP project.
I'm using Nuget 2.8.1
How can I add this file to UWP project?
NuGet uses target framework references in a variety of places to specifically identify and isolate framework-dependent components of a package. To include platform-specific reference assemblies, add the following to the element of .nuspec as appropriate for your uwp platform(UAP10).
For more, you could refer to Create cross-platform packages.