Removed DLL based nuspec, added project based nuspec

This commit is contained in:
Michael Smith 2016-03-06 21:55:45 -08:00
parent cdc923c3b5
commit e9542e45e1
2 changed files with 20 additions and 1 deletions

View File

@ -86,7 +86,9 @@
<Compile Include="Public\Spatial\Vector3.cs" />
<Compile Include="Public\Scripting\Variables.cs" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="OSCADSharp.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>OSCADSharp</id>
<version>0.6.0</version>
<title>OSCADSharp</title>
<authors>Michael Smith</authors>
<owners>Michael Smith</owners>
<licenseUrl>https://github.com/Exolun/OSCADSharp/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/Exolun/OSCADSharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A C# library for generating OpenSCAD Code</description>
<releaseNotes>Initial release of OSCADSharp</releaseNotes>
<copyright>Copyright 2016</copyright>
<tags>OpenSCAD OSCADSharp</tags>
</metadata>
</package>