mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
|
|
|
<!--
|
|
First meta data information about the package itself.
|
|
Documentation can be found at: (or via nuget.org)
|
|
https://docs.microsoft.com/en-us/nuget/reference/nuspec#optional-metadata-elements
|
|
-->
|
|
<metadata>
|
|
<!-- required: -->
|
|
<id>SiddiqSoft.spdlog</id>
|
|
<version>$VERSION$</version>
|
|
<authors>Gabi Melman</authors>
|
|
<description>Fast C++ logging library</description>
|
|
<tags>logging spdlog cpp11 native nativepackage cpp</tags>
|
|
<projectUrl>https://github.com/abdulkareem-siddiq/spdlog</projectUrl>
|
|
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
|
<license type="expression">MIT</license>
|
|
<releaseNotes></releaseNotes>
|
|
<copyright>Copyright (c) 2016 Gabi Melman</copyright>
|
|
<!-- Dependencies -->
|
|
<dependencies>
|
|
</dependencies>
|
|
</metadata>
|
|
|
|
<!--
|
|
Specify the content for your package.
|
|
This is only a packing list, no build semantic is defined here!
|
|
Stick to conventions described by nuget.org:
|
|
https://docs.microsoft.com/en-us/nuget/create-packages/creating-a-package#from-a-convention-based-working-directory
|
|
-->
|
|
<files>
|
|
<!-- includes -->
|
|
<file src="..\include\spdlog\**" target="build\native\include\spdlog\" />
|
|
|
|
<!-- MSBuild .targets files -->
|
|
<file src="SiddiqSoft.spdlog.targets" target="build\native" />
|
|
</files>
|
|
</package>
|