-
Notifications
You must be signed in to change notification settings - Fork 18
/
psbuild.nuspec
29 lines (27 loc) · 1.22 KB
/
psbuild.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
<?xml version="1.0" encoding="utf-8"?>
<!--
For more info on this file format visit http://docs.nuget.org/docs/reference/nuspec-reference.
-->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>psbuild</id>
<version>1.2.0-beta</version>
<authors>Sayed Ibrahim Hashimi</authors>
<description>
NuGet package which installs a PS module on init that can be used by other packages in init.ps1/install.ps1.
It exposes some functionality to simplify manipulating MSBuild files.
For more info on updates see the release notes at https://github.com/ligershark/psbuild#release-notes.
Commit ID: $(COMMIT_ID)
</description>
<language>en-US</language>
<projectUrl>https://github.com/ligershark/psbuild/</projectUrl>
<licenseUrl>https://github.com/ligershark/psbuild/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright 2013-2014 Sayed Ibrahim Hashimi</copyright>
<tags>msbuild</tags>
<!-- This is hack to avoid having content in the package -->
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" />
</frameworkAssemblies>
</metadata>
</package>