Skip to content

Commit

Permalink
fix: path for iTunes artwork (#787)
Browse files Browse the repository at this point in the history
Related #786
  • Loading branch information
Plac3hold3r committed Jul 5, 2020
1 parent c4acb1e commit 2764f0f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup Label="TemplatePackInfo">
<Authors>Plac3hold3r</Authors>
<Description>A customizable template used to scaffold a cross platform MvvmCross application using Xamarin Navtive</Description>
<Description>A customizable template used to scaffold a cross platform MvvmCross application using Xamarin Native</Description>
<Version>0.1.0</Version>
</PropertyGroup>

Expand All @@ -26,7 +26,10 @@
<ExcludeFromPackage Include="$(TemplateSourceRoot)**/.vs/**/*" />
<ExcludeFromPackage Include="$(TemplateSourceRoot)**/.git/**/*" />
<ExcludeFromPackage Include="$(TemplateSourceRoot)**/packages/**/*" />
<ExcludeFromPackage Include="$(TemplateSourceRoot)**/iTunesArtwork*" />

<ItunesArtWorkFiles Include="$(TemplateSourceRoot)**/iTunesArtwork*" />

<TemplateFiles Include="$(TemplateSourceRoot)/**/*"
Exclude="@(ExcludeFromPackage)" />
</ItemGroup>
Expand All @@ -44,6 +47,8 @@
<Content Include="@(TemplateFiles)"
Exclude="@(ExcludeFromPackage)"
PackagePath="Content/%(RecursiveDir)%(Filename)%(Extension)" />
<Content Include="@(ItunesArtWorkFiles)"
PackagePath="Content/" />
</ItemGroup>

<Target Name="GetNuGetPath" Outputs="@(NuGetPackOutput)">
Expand Down

0 comments on commit 2764f0f

Please sign in to comment.