also prepare nuspec with better variable substitutions make better use of variables in csharp make file separate nuget target into more strategic steps of staging packaging and distribution incorporated self documenting path oriented targets as well
23 lines
936 B
XML
23 lines
936 B
XML
<?xml version="1.0"?>
|
|
<package >
|
|
<metadata>
|
|
<id>NNNN</id>
|
|
<version>VVVV</version>
|
|
<authors>Google</authors>
|
|
<licenseUrl>https://github.com/google/or-tools/blob/master/LICENSE-2.0.txt</licenseUrl>
|
|
<projectUrl>https://developers.google.com/optimization</projectUrl>
|
|
<description>.NET Assembly for the Operations Research Tools project</description>
|
|
<copyright>Copyright 2016 Google, Inc</copyright>
|
|
<tags>Operations Research Math Linear Constraint Programming C# .NET SWIG C++</tags>
|
|
<dependencies>
|
|
<dependency id="MMMM" version="PROTOBUF_TAG" />
|
|
</dependencies>
|
|
</metadata>
|
|
<files>
|
|
<file src="bin\NNNN.dll" target="lib\net40"/>
|
|
<file src="examples\**\*.*" target="examples"/>
|
|
<file src="examples\data\**\*.*" target="data"/>
|
|
<file src="LICENSE-2.0.txt"/>
|
|
</files>
|
|
</package>
|