From 48beabdb3fb7864c87e912c9288750a953453468 Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Wed, 7 Oct 2015 22:03:12 +0300 Subject: nuget package scripts --- scripts/nuget.autopkg | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 scripts/nuget.autopkg (limited to 'scripts/nuget.autopkg') diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg new file mode 100644 index 0000000..88379f8 --- /dev/null +++ b/scripts/nuget.autopkg @@ -0,0 +1,50 @@ +nuget{ + nuspec{ + id = libpugixml; + version : 1.6.0.1; + title: XML parser library in C++; + authors: {Arseny Kapoulkine}; + owners: {Ivan Gagis}; + licenseUrl: "http://pugixml.org/license.html"; + projectUrl: "http://pugixml.org/"; + iconUrl: "https://github.com/zeux/pugixml/logo.svg"; + requireLicenseAcceptance:false; + summary: XML parser library in C++; + + description: @"XML parser library in C++"; + releaseNotes: "Initial release"; + copyright: Copyright (c) 2006-2015 Arseny Kapoulkine; + tags: { native}; + } + dependencies { + packages : { + }; + } + files { + include: { "..\src\**\*.hpp" }; + + [x86,release] { + lib: vs2015\Release\libpugixml.lib; +// symbols: vs2015\Release\libpugixml.pdb; +// bin: vs2015\Release\libpugixml.dll; + } + + [x86,debug] { + lib: vs2015\Debug\libpugixml.lib; +// symbols: vs2015\Debug\libpugixml.pdb; +// bin: vs2015\Debug\libpugixml.dll; + } + + [x64,release] { + lib: vs2015\x64\Release\libpugixml.lib; +// symbols: vs2015\x64\Release\libpugixml.pdb; +// bin: vs2015\x64\Release\libpugixml.dll; + } + + [x64,debug] { + lib: vs2015\x64\Debug\libpugixml.lib; +// symbols: vs2015\x64\Debug\libpugixml.pdb; +// bin: vs2015\x64\Debug\libpugixml.dll; + } + } +} -- cgit v1.2.3 From ea190c8bd2695f6b1df7335b1d48fa10edd717fc Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 8 Oct 2015 13:33:54 +0300 Subject: changed nuget name to pugixml without lib prefix --- scripts/nuget.autopkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/nuget.autopkg') diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg index 88379f8..c620b57 100644 --- a/scripts/nuget.autopkg +++ b/scripts/nuget.autopkg @@ -1,10 +1,10 @@ nuget{ nuspec{ - id = libpugixml; + id = pugixml; version : 1.6.0.1; title: XML parser library in C++; authors: {Arseny Kapoulkine}; - owners: {Ivan Gagis}; + owners: {Arseny Kapoulkine}; licenseUrl: "http://pugixml.org/license.html"; projectUrl: "http://pugixml.org/"; iconUrl: "https://github.com/zeux/pugixml/logo.svg"; -- cgit v1.2.3