-
Notifications
You must be signed in to change notification settings - Fork 570
/
Copy pathSkiaSharp.NuGet.props
37 lines (26 loc) · 1.31 KB
/
SkiaSharp.NuGet.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project>
<PropertyGroup>
<!-- package -->
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=868515</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes>Please visit https://go.microsoft.com/fwlink/?linkid=868517 to view the release notes.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- source -->
<RepositoryUrl>https://go.microsoft.com/fwlink/?linkid=868515</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>$(AssemblyVersionGitBranch)</RepositoryBranch>
<RepositoryCommit>$(AssemblyVersionGitSha)</RepositoryCommit>
<!-- legal -->
<Authors>Microsoft</Authors>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NoWarn>$(NoWarn);NU5125;NU5048</NoWarn>
</PropertyGroup>
<ItemGroup>
<!-- legal -->
<None Include="$(MSBuildThisFileDirectory)..\images\nuget.png" PackagePath="icon.png" Pack="True" Visible="False" />
<None Include="$(MSBuildThisFileDirectory)..\LICENSE.txt" PackagePath="LICENSE.txt" Pack="True" Visible="False" />
</ItemGroup>
<Target Name="IncludeAdditionalTfmSpecificPackageFiles" />
</Project>