forked from cake-build/cake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCake.Common.nuspec
More file actions
27 lines (27 loc) · 1.5 KB
/
Cake.Common.nuspec
File metadata and controls
27 lines (27 loc) · 1.5 KB
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd" minClientVersion="2.8">
<id>Cake.Common</id>
<version>0.0.0</version>
<authors>Patrik Svensson</authors>
<owners>Patrik Svensson</owners>
<summary>Cake (C# Make) is a build automation system with a C# DSL to do things like compiling code, copy files/folders, running unit tests, compress files and build NuGet packages.</summary>
<description>Provides aliases (extension methods on Cake context) that support CI, build, unit tests, zip, signing, etc. for Cake.</description>
<licenseUrl>https://github.com/cake-build/cake/blob/develop/LICENSE</licenseUrl>
<projectUrl>https://github.com/cake-build/cake</projectUrl>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<tags>Cake Script Build</tags>
<developmentDependency>true</developmentDependency>
<dependencies>
<dependency id="Cake.Core" version="$version$" />
</dependencies>
</metadata>
<files>
<file src="Cake.Common.dll" target="lib/net45" />
<file src="Cake.Common.xml" target="lib/net45" />
<file src="Cake.Common.pdb" target="lib/net45" />
<file src="LICENSE" />
</files>
</package>