-
Notifications
You must be signed in to change notification settings - Fork 2
/
DebtRatchet.nuspec
26 lines (26 loc) · 1.74 KB
/
DebtRatchet.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>DebtRatchet</id>
<version>1.0.5</version>
<title>DebtRatchet</title>
<authors>keyboardDrummer</authors>
<owners>keyboardDrummer</owners>
<projectUrl>https://github.com/keyboardDrummer/DebtRatchet</projectUrl>
<iconUrl>https://raw.githubusercontent.com/keyboardDrummer/DebtRatchet/master/icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Remove technical debt from your code gradually using a Roslyn diagnostic. Requires VS 2015 update 3.</description>
<copyright>Copyright</copyright>
<tags>technical debt, analyzers</tags>
</metadata>
<!-- The convention for analyzers is to put language agnostic dlls in analyzers\dotnet and language specific analyzers in either analyzers\dotnet\cs or analyzers\dotnet\vb -->
<files>
<file src="DebtRatchet.Library\bin\Release\netstandard1.3\DebtRatchet.Library.dll" target="lib\netstandard1.3"/>
<file src="DebtRatchet\bin\Release\netstandard1.3\*.dll" target="analyzers\dotnet\cs\" exclude="**\Microsoft.CodeAnalysis.*;**\System.Collections.Immutable.*;**\System.Reflection.Metadata.*;**\System.Composition.*" />
<file src="AttributeUpdater\bin\Release\net471\AttributeUpdater.exe" target="AttributeUpdater\AttributeUpdater.exe"/>
<file src="AttributeUpdater\bin\Release\net471\*.dll" target="AttributeUpdater\"/>
<file src="StatisticsProvider\bin\Release\net471\StatisticsProvider.exe" target="StatisticsProvider\StatisticsProvider.exe" />
<file src="StatisticsProvider\bin\Release\net471\*.dll" target="StatisticsProvider\" />
<file src="DebtRatchet\Tools\*.ps1" target="tools\" />
</files>
</package>