|
6 | 6 | <IsPackable>true</IsPackable> |
7 | 7 | <IncludeSymbols>true</IncludeSymbols> |
8 | 8 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 9 | + <!-- |
| 10 | + We're setting ProjectType manually. |
| 11 | + Since we have no reference to Cake in this project, |
| 12 | + auto-detection of ProjectType will fail |
| 13 | + --> |
| 14 | + <CakeContribGuidelinesProjectType>module</CakeContribGuidelinesProjectType> |
9 | 15 | </PropertyGroup> |
10 | 16 |
|
11 | 17 | <PropertyGroup> |
|
20 | 26 | <PackageTags>cake;build;script;cake-build;module;cake-contrib;cake-module;ci;tfs;azure-devops;azure-devops-server;myget;teamcity;travisci</PackageTags> |
21 | 27 | <RepositoryUrl>https://github.com/cake-contrib/Cake.BuildSystems.Module.git</RepositoryUrl> |
22 | 28 | <RepositoryType>git</RepositoryType> |
23 | | - <PackageIconUrl>https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/cake-contrib-medium.png</PackageIconUrl> |
24 | | - <PackageIcon>$(CakeContribGuidelinesIconDestinationLocation)</PackageIcon> |
25 | 29 | </PropertyGroup> |
26 | 30 |
|
27 | 31 | <ItemGroup> |
|
41 | 45 |
|
42 | 46 | <ItemGroup> |
43 | 47 | <None Include="$(OutputPath)/**/Cake.*" PackagePath="lib/$(TargetFramework)" Pack="true" /> |
| 48 | + <None Remove="icon.png" /> |
44 | 49 | </ItemGroup> |
45 | 50 |
|
46 | 51 | <ItemGroup> |
47 | | - <PackageReference Include="CakeContrib.Guidelines" Version="0.5.0"> |
| 52 | + <PackageReference Include="CakeContrib.Guidelines" Version="1.1.0"> |
48 | 53 | <PrivateAssets>all</PrivateAssets> |
49 | 54 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
50 | 55 | </PackageReference> |
|
54 | 59 | </PackageReference> |
55 | 60 | </ItemGroup> |
56 | 61 |
|
57 | | - <Target |
58 | | - Name="_cleanupOutput" |
59 | | - AfterTargets="AfterBuild;CoreBuild"> |
| 62 | + <Target Name="_cleanupOutput" AfterTargets="AfterBuild;CoreBuild"> |
60 | 63 |
|
61 | 64 | <!-- The output of "this" project is not really needed, anyways. --> |
62 | 65 | <!-- also, Cake.Core and Cake.Common are copied and not needed here. --> |
|
0 commit comments