forked from cake-build/cake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCake.nuspec
More file actions
30 lines (30 loc) · 1.4 KB
/
Cake.nuspec
File metadata and controls
30 lines (30 loc) · 1.4 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
28
29
30
<?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">
<id>Cake</id>
<version>0.0.0</version>
<authors>Patrik Svensson</authors>
<owners>Patrik Svensson</owners>
<description>The Cake script runner.</description>
<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>
<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>
</metadata>
<files>
<file src="Cake.exe" />
<file src="Cake.Core.dll" />
<file src="Cake.Core.xml" />
<file src="Cake.NuGet.dll" />
<file src="Cake.NuGet.xml" />
<file src="Cake.Common.dll" />
<file src="Cake.Common.xml" />
<file src="NuGet.Core.dll" />
<file src="Mono.CSharp.dll" />
<file src="Autofac.dll" />
<file src="LICENSE" />
</files>
</package>