-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathonebuild.nuspec
35 lines (35 loc) · 2.11 KB
/
onebuild.nuspec
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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>OneBuild</id>
<version>1.0.0</version>
<authors>Lloyd Holman</authors>
<owners>Lloyd Holman</owners>
<licenseUrl>https://github.com/lholman/OneBuild</licenseUrl>
<projectUrl>https://github.com/lholman/OneBuild</projectUrl>
<iconUrl>https://github.com/lholman/OneBuild</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>OneBuild is a modular set of .NET solution build scripts written in PowerShell. Following the proven Deployment Pipeline approach to software build and delivery OneBuild aims to make the Commit (versioning, compilation, unit testing and packaging of binaries) a standard and simple exercise. Being convention based and therefore requiring no configuration allows OneBuild to build any target .NET solution out of the box, assuming the solution follows some basic convention patterns. OneBuild is proud to rely on Invoke-Build (https://github.com/nightroman/Invoke-Build) for task automation.</description>
<summary>A modular set of convention based .NET solution build scripts written in PowerShell.</summary>
<releaseNotes>
(bug) #12 - 'New-CompiledSolution module doesn't identify the latest installed version of MSBuild'
(enhancement) #39 - 'Deprecate Build.bat'
(bug) #42 - Support VB projects
(documentation) #44 - Readme doesn't explain the intended way to run OneBuild's unit tests
(bug) #48 - Terminate if the Windows OS version and Architecture are not 64 bit
</releaseNotes>
<copyright>Copyright 2014</copyright>
<dependencies>
<dependency id="NuGet.CommandLine" version="2.7.3" />
<dependency id="NUnit.Runners" version="2.6.3" />
<dependency id="Invoke-Build" version="2.9.12" />
</dependencies>
</metadata>
<files>
<file src="tools\**\*.*" target="\tools\" />
<file src="OneBuild.build.ps1" target="\tools\temp\" />
<file src="OneBuild.bat" target="\tools\temp\" />
<file src="LICENSE" target="\tools\LICENSE" />
<file src="README.MD" target="\tools\README.MD" />
</files>
</package>