Skip to content

Commit

Permalink
add nuspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 committed Nov 17, 2018
1 parent b134c10 commit 6a246b4
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TaskBoardAssistant/TaskBoardAssistant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Tanner Barlow</Authors>
<Version>1.0.0</Version>
<Description>Main entry point for managing task boards like Trello</Description>
<Description>Create and execute policies to automate the management of your task board</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
54 changes: 54 additions & 0 deletions TaskBoardAssistant/TaskBoardAssistant.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>TaskBoardAssistant</id>

<!-- The package version number that is used when resolving dependencies -->
<version>1.0.4</version>

<!-- Authors contain text that appears directly on the gallery -->
<authors>tbarlow12</authors>

<!--
Owners are typically nuget.org identities that allow gallery
users to easily find other packages by the same owners.
-->
<owners>tbarlow12</owners>

<!-- License and project URLs provide links for the gallery -->
<projectUrl>https://github.com/tbarlow12/task-board-assistant</projectUrl>
<repository>https://github.com/tbarlow12/task-board-assistant</repository>
<!--
If true, this value prompts the user to accept the license when
installing the package.
-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>

<!-- Any details about this particular release -->
<releaseNotes>Restructure of library to bring in all components rather than separate packages</releaseNotes>

<!--
The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal.
-->
<description>Create and execute policies to automate the management of your task board</description>

<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>trello jira task-management kanban policy-engine task-board github-projects vsts azure-devops</tags>

<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
<dependency id="Newtonsoft.Json" version="11.0.2" />
<dependency id="YamlDotNet" version="5.2.1" />
<dependency id="Manatee.Json" version="10.1.0" />
<dependency id="Manatee.Trello" version="3.4.3" />
<dependency id="Manatee.Trello.ManateeJson" version="2.3.0" />
<dependency id="Microsoft.Azure.Storage.Blob" version="9.4.0" />
</dependencies>
</metadata>

<files>
<file src="bin/Release/TaskBoardAssistant.dll" target="lib/netstandard2.0" />
</files>
</package>

0 comments on commit 6a246b4

Please sign in to comment.