-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathElmah.Bootstrapper.nuspec
34 lines (34 loc) · 1.75 KB
/
Elmah.Bootstrapper.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>elmah.bootstrapper</id>
<!-- See https://github.com/NuGet/Home/issues/3530 for why a
replacement token is used for the version suffix below when
the `-Suffix` argument to `nuget pack` serves the same
purpose. -->
<version>1.0.1$VersionSuffix$</version>
<title>ELMAH Bootstrapper</title>
<authors>Atif Aziz</authors>
<owners>Atif Aziz</owners>
<copyright>Copyright © 2010 Atif Aziz. All rights reserved.</copyright>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://elmah.github.io/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Automatically registers ELMAH modules and handlers on application start-up.</summary>
<description>Automatically registers ELMAH modules and handlers on application start-up instead of wiring via configuration (web.config).</description>
<language>en-US</language>
<tags>elmah error logging unhandled exception</tags>
<releaseNotes>See: https://github.com/elmah/Bootstrapper/releases</releaseNotes>
<dependencies>
<group targetFramework="net45">
<dependency id="elmah.corelibrary" version="1.2.2" />
</group>
</dependencies>
</metadata>
<files>
<file src="Elmah.Athz.config" target="content\Elmah.Athz.config" />
<file src="bin\Release\Elmah.Bootstrapper.*" target="lib\net45" />
<file src="**.cs" target="src" exclude="packages\**;obj\**" />
<file src="COPYING.txt" target="COPYING.txt" />
</files>
</package>