-
Notifications
You must be signed in to change notification settings - Fork 389
/
plog.nuspec
23 lines (23 loc) · 923 Bytes
/
plog.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>plog</id>
<version>$version$</version>
<description>Pretty powerful logging library in about 1000 lines of code</description>
<authors>SergiusTheBest</authors>
<projectUrl>https://github.com/SergiusTheBest/plog</projectUrl>
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>native log logging c++ cpp</tags>
<repository type="git" url="https://github.com/SergiusTheBest/plog" />
<dependencies>
<group targetFramework="native0.0" />
</dependencies>
</metadata>
<files>
<file src="include/**/*.h" target="/lib/native" />
<file src="README.md" target="/docs" />
<file src="plog.targets" target="/build/native" />
<file src="LICENSE" />
</files>
</package>