Added nuspec file to repo, updated everything to reflect changes for new release. 1.2.0
This commit is contained in:
parent
61ff9425ea
commit
5c52364607
|
@ -1,11 +1,12 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.21005.1
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25420.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{80ADC18F-2BFC-4B79-B264-5244E4F2FEED}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
ChangeLog.txt = ChangeLog.txt
|
||||
Package.nuspec = Package.nuspec
|
||||
..\README.md = ..\README.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
|
|
|
@ -7,12 +7,12 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("AsterNET")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: Guid("abe98502-ea83-4b04-98c3-ffe3eabe06b0")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyVersion("1.2.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.2.0.0")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
|
|
25
Asterisk.2013/Package.nuspec
Normal file
25
Asterisk.2013/Package.nuspec
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>AsterNET</id>
|
||||
<version>1.2.0</version>
|
||||
<authors>Ben Merrills</authors>
|
||||
<owners>Ben Merrills</owners>
|
||||
<licenseUrl>https://github.com/AsterNET/AsterNET/blob/master/LICENSE</licenseUrl>
|
||||
<projectUrl>https://github.com/AsterNET/AsterNET</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>AsterNET an Asterisk FastAGI and AMI framework for .NET</description>
|
||||
<releaseNotes>Please see: https://github.com/AsterNET/AsterNET/commits/master</releaseNotes>
|
||||
<copyright>Copyright 2017</copyright>
|
||||
<tags>Asterisk AsterNET Asterisk.NET C# VB.NET DotNET</tags>
|
||||
<dependencies>
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="Asterisk.NET\bin\Release\net45\AsterNET.dll" target="lib\net45\AsterNET.dll" />
|
||||
<file src="Asterisk.NET\bin\Release\net45\AsterNET.pdb" target="lib\net45\AsterNET.pdb" />
|
||||
<file src="changelog.txt" target="changelog.txt" />
|
||||
<file src="LICENSE.txt" target="LICENSE.txt" />
|
||||
<file src="README.md" target="README.md" />
|
||||
</files>
|
||||
</package>
|
Loading…
Reference in a new issue