Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
GH-299: Update to .NET 4.6 and VS2015
Browse files Browse the repository at this point in the history
GH-229: Can't build cloned repository
GH-153: Visual Studio 2015

Finally updating the solution to VS2015 and .NET 4.6.1.
  • Loading branch information
cesarsouza committed Sep 24, 2016
1 parent c118be0 commit a11e074
Show file tree
Hide file tree
Showing 101 changed files with 3,920 additions and 3,351 deletions.
3 changes: 3 additions & 0 deletions Build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ echo.
echo - Building NET45 configuration...
%DEVENV% Sources\Accord.NET.sln /Rebuild NET45 /out "bin\Build.NET45.log"
echo.
echo - Building NET46 configuration...
%DEVENV% Sources\Accord.NET.sln /Rebuild NET46 /out "bin\Build.NET46.log"
echo.
echo - Building samples...
%DEVENV% Samples\Samples.sln /Rebuild Release /out "bin\Build.Samples.log"
echo.
Expand Down
39 changes: 35 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ Installing

To install the framework in your application, please use NuGet. If you are on Visual Studio, right-click on the "References" item in your solution folder, and select "Manage NuGet Packages." Search for Accord.MachineLearning ([or equivalently, Accord.Math, Accord.Statistics or Accord.Imaging depending on your initial goal](https://www.nuget.org/packages?q=accord.net)) and select "Install."

If you would like to install the framwork on [Unity3D applications](https://unity3d.com), download the framework binaries for .NET 3.5 from the *framework releases* page.
If you would like to install the framework on [Unity3D applications](https://unity3d.com), download the framework binaries for .NET 3.5 from the *framework releases* page.
Add the framework binaries to your Plugins folder, but remove any assemblies that might have external dependencies, such as Accord.Video and Accord.Audio. Finally, find and
add the System.ComponentModel.DataAnnotations assembly from your system as well.

Sample applications
-------------
Expand All @@ -27,10 +29,39 @@ Building
-------------

#### With Visual Studio 2013
Navigate to the Sources directory, and open the *Accord.NET.sln* solution file.

Please download and install the following dependencies:

- T4 Toolbox for Visual Studio 2013
https://visualstudiogallery.msdn.microsoft.com/791817a4-eb9a-4000-9c85-972cc60fd5aa

- Sandcastle Help File Builder (with VS2013 extension)
https://github.com/EWSoftware/SHFB/releases

- NUnit Test Adapter
https://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d

Then navigate to the Sources directory, and open the *Accord.NET.sln* solution file.


#### With Visual Studio 2015
Before you can build with VS2015, you need to have VS2013 installed. Some VC++ projects still need the VS2013 VC++ toolchain. After installing either the full VS2013 or just the VS2013 VC++ tools, navigate to the Sources directory, and open the *Accord.NET.sln* solution file. However, please make sure to **not** let VS2015 auto-convert any VC++ projects to the VS2015 toolchain, otherwise the project will not build.

Please download and install the following dependencies:

- VS2013 C++ platform toolset (for compiling some unit tests only)
Any free/pro/trial VS2013 version that includes C++ should work.

- T4 Toolbox for Visual Studio 2015
https://visualstudiogallery.msdn.microsoft.com/34b6d489-afbc-4d7b-82c3-dded2b726dbc

- Sandcastle Help File Builder (with VS2015 extension)
https://github.com/EWSoftware/SHFB/releases

- NUnit Test Adapter
https://visualstudiogallery.msdn.microsoft.com/6ab922d0-21c0-4f06-ab5f-4ecd1fe7175d

Then navigate to the Sources directory, and open the *Accord.NET.sln* solution file.


#### With MonoDevelop, for running on Linux

Expand All @@ -46,7 +77,7 @@ Before you can build with VS2015, you need to have VS2013 installed. Some VC++ p
# Build the framework solution using Mono
mdtool build -c:"NET40" Sources/Accord.NET.Mono.sln

Contributing
Contributing
-------------

If you would like to contribute, please do so by helping update the project's Wiki pages. While you can also make a donation, fill bug reports and contribute code in the form of pull requests, priority is being given to the documentation.
Expand Down
6 changes: 6 additions & 0 deletions Setup/Accord.Setup.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
<FileAlignment>512</FileAlignment>
<OutputPath>bin</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'NET46'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\NET46\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<None Include="Archiver\Build.cmd" />
<None Include="Archiver\Samples.cmd" />
Expand Down
14 changes: 7 additions & 7 deletions Setup/CreateRelease.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ cd ..
echo.
echo.

:: Build executable installer
cd Installer
cmd /c Build.cmd
cd ..

echo.
echo.
:: Build executable installer [disabled since v3.3.0]
:: cd Installer
:: cmd /c Build.cmd
:: cd ..
::
:: echo.
:: echo.

:: Build NuGet packages
cd NuGet
Expand Down
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Audio.DirectSound.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\Accord.Audio.DirectSound.dll" target="lib\net45\Accord.Audio.DirectSound.dll" />
<file src="..\..\Release\net45\Accord.Audio.DirectSound.xml" target="lib\net45\Accord.Audio.DirectSound.xml" />

<file src="..\..\Release\net46\Accord.Audio.DirectSound.dll" target="lib\net46\Accord.Audio.DirectSound.dll" />
<file src="..\..\Release\net46\Accord.Audio.DirectSound.xml" target="lib\net46\Accord.Audio.DirectSound.xml" />
</files>
</package>
17 changes: 11 additions & 6 deletions Setup/NuGet/Accord.Audio.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,24 @@
</dependencies>
</metadata>
<files>
<file src="..\..\Release\net35\Accord.Audio.dll" target="lib\net35\Accord.Audio.dll" />
<file src="..\..\Release\net35\Accord.Audio.xml" target="lib\net35\Accord.Audio.xml" />
<file src="..\..\Release\net35\Accord.Audio.dll" target="lib\net35\Accord.Audio.dll" />
<file src="..\..\Release\net35\Accord.Audio.xml" target="lib\net35\Accord.Audio.xml" />
<file src="..\..\Release\net35\Accord.Audition.dll" target="lib\net35\Accord.Audition.dll" />
<file src="..\..\Release\net35\Accord.Audition.xml" target="lib\net35\Accord.Audition.xml" />

<file src="..\..\Release\net40\Accord.Audio.dll" target="lib\net40\Accord.Audio.dll" />
<file src="..\..\Release\net40\Accord.Audio.xml" target="lib\net40\Accord.Audio.xml" />
<file src="..\..\Release\net40\Accord.Audio.dll" target="lib\net40\Accord.Audio.dll" />
<file src="..\..\Release\net40\Accord.Audio.xml" target="lib\net40\Accord.Audio.xml" />
<file src="..\..\Release\net40\Accord.Audition.dll" target="lib\net40\Accord.Audition.dll" />
<file src="..\..\Release\net40\Accord.Audition.xml" target="lib\net40\Accord.Audition.xml" />

<file src="..\..\Release\net45\Accord.Audio.dll" target="lib\net45\Accord.Audio.dll" />
<file src="..\..\Release\net45\Accord.Audio.xml" target="lib\net45\Accord.Audio.xml" />
<file src="..\..\Release\net45\Accord.Audio.dll" target="lib\net45\Accord.Audio.dll" />
<file src="..\..\Release\net45\Accord.Audio.xml" target="lib\net45\Accord.Audio.xml" />
<file src="..\..\Release\net45\Accord.Audition.dll" target="lib\net45\Accord.Audition.dll" />
<file src="..\..\Release\net45\Accord.Audition.xml" target="lib\net45\Accord.Audition.xml" />

<file src="..\..\Release\net46\Accord.Audio.dll" target="lib\net46\Accord.Audio.dll" />
<file src="..\..\Release\net46\Accord.Audio.xml" target="lib\net46\Accord.Audio.xml" />
<file src="..\..\Release\net46\Accord.Audition.dll" target="lib\net46\Accord.Audition.dll" />
<file src="..\..\Release\net46\Accord.Audition.xml" target="lib\net46\Accord.Audition.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Controls.Audio.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,8 @@

<file src="..\..\Release\net45\Accord.Controls.Audio.dll" target="lib\net45\Accord.Controls.Audio.dll" />
<file src="..\..\Release\net45\Accord.Controls.Audio.xml" target="lib\net45\Accord.Controls.Audio.xml" />

<file src="..\..\Release\net46\Accord.Controls.Audio.dll" target="lib\net46\Accord.Controls.Audio.dll" />
<file src="..\..\Release\net46\Accord.Controls.Audio.xml" target="lib\net46\Accord.Controls.Audio.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Controls.Imaging.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\Accord.Controls.Imaging.dll" target="lib\net45\Accord.Controls.Imaging.dll" />
<file src="..\..\Release\net45\Accord.Controls.Imaging.xml" target="lib\net45\Accord.Controls.Imaging.xml" />

<file src="..\..\Release\net46\Accord.Controls.Imaging.dll" target="lib\net46\Accord.Controls.Imaging.dll" />
<file src="..\..\Release\net46\Accord.Controls.Imaging.xml" target="lib\net46\Accord.Controls.Imaging.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Controls.Vision.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@

<file src="..\..\Release\net45\Accord.Controls.Vision.dll" target="lib\net45\Accord.Controls.Vision.dll" />
<file src="..\..\Release\net45\Accord.Controls.Vision.xml" target="lib\net45\Accord.Controls.Vision.xml" />

<file src="..\..\Release\net46\Accord.Controls.Vision.dll" target="lib\net46\Accord.Controls.Vision.dll" />
<file src="..\..\Release\net46\Accord.Controls.Vision.xml" target="lib\net46\Accord.Controls.Vision.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Controls.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@

<file src="..\..\Release\net45\Accord.Controls.dll" target="lib\net45\Accord.Controls.dll" />
<file src="..\..\Release\net45\Accord.Controls.xml" target="lib\net45\Accord.Controls.xml" />

<file src="..\..\Release\net46\Accord.Controls.dll" target="lib\net46\Accord.Controls.dll" />
<file src="..\..\Release\net46\Accord.Controls.xml" target="lib\net46\Accord.Controls.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Fuzzy.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\Accord.Fuzzy.dll" target="lib\net45\Accord.Fuzzy.dll" />
<file src="..\..\Release\net45\Accord.Fuzzy.xml" target="lib\net45\Accord.Fuzzy.xml" />

<file src="..\..\Release\net46\Accord.Fuzzy.dll" target="lib\net46\Accord.Fuzzy.dll" />
<file src="..\..\Release\net46\Accord.Fuzzy.xml" target="lib\net46\Accord.Fuzzy.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Genetic.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Accord.Genetic.dll" target="lib\net45\Accord.Genetic.dll" />
<file src="..\..\Release\net45\Accord.Genetic.xml" target="lib\net45\Accord.Genetic.xml" />

<file src="..\..\Release\net46\Accord.Genetic.dll" target="lib\net46\Accord.Genetic.dll" />
<file src="..\..\Release\net46\Accord.Genetic.xml" target="lib\net46\Accord.Genetic.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.IO.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@

<file src="..\..\Release\net45\Accord.IO.dll" target="lib\net45\Accord.IO.dll" />
<file src="..\..\Release\net45\Accord.IO.xml" target="lib\net45\Accord.IO.xml" />

<file src="..\..\Release\net46\Accord.IO.dll" target="lib\net46\Accord.IO.dll" />
<file src="..\..\Release\net46\Accord.IO.xml" target="lib\net46\Accord.IO.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Imaging.Noncommercial.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Noncommercial\Accord.Imaging.Noncommercial.dll" target="lib\net45\Accord.Imaging.Noncommercial.dll" />
<file src="..\..\Release\net45\Noncommercial\Accord.Imaging.Noncommercial.xml" target="lib\net45\Accord.Imaging.Noncommercial.xml" />

<file src="..\..\Release\net46\Noncommercial\Accord.Imaging.Noncommercial.dll" target="lib\net46\Accord.Imaging.Noncommercial.dll" />
<file src="..\..\Release\net46\Noncommercial\Accord.Imaging.Noncommercial.xml" target="lib\net46\Accord.Imaging.Noncommercial.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Imaging.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,8 @@

<file src="..\..\Release\net45\Accord.Imaging.dll" target="lib\net45\Accord.Imaging.dll" />
<file src="..\..\Release\net45\Accord.Imaging.xml" target="lib\net45\Accord.Imaging.xml" />

<file src="..\..\Release\net46\Accord.Imaging.dll" target="lib\net46\Accord.Imaging.dll" />
<file src="..\..\Release\net46\Accord.Imaging.xml" target="lib\net46\Accord.Imaging.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.MachineLearning.GPL.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\GPL\Accord.MachineLearning.GPL.dll" target="lib\net45\Accord.MachineLearning.GPL.dll" />
<file src="..\..\Release\net45\GPL\Accord.MachineLearning.GPL.xml" target="lib\net45\Accord.MachineLearning.GPL.xml" />

<file src="..\..\Release\net46\GPL\Accord.MachineLearning.GPL.dll" target="lib\net46\Accord.MachineLearning.GPL.dll" />
<file src="..\..\Release\net46\GPL\Accord.MachineLearning.GPL.xml" target="lib\net46\Accord.MachineLearning.GPL.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.MachineLearning.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\Accord.MachineLearning.dll" target="lib\net45\Accord.MachineLearning.dll" />
<file src="..\..\Release\net45\Accord.MachineLearning.xml" target="lib\net45\Accord.MachineLearning.xml" />

<file src="..\..\Release\net46\Accord.MachineLearning.dll" target="lib\net46\Accord.MachineLearning.dll" />
<file src="..\..\Release\net46\Accord.MachineLearning.xml" target="lib\net46\Accord.MachineLearning.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Math.Noncommercial.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@

<file src="..\..\Release\net45\Noncommercial\Accord.Math.Noncommercial.dll" target="lib\net45\Accord.Math.Noncommercial.dll" />
<file src="..\..\Release\net45\Noncommercial\Accord.Math.Noncommercial.xml" target="lib\net45\Accord.Math.Noncommercial.xml" />

<file src="..\..\Release\net46\Noncommercial\Accord.Math.Noncommercial.dll" target="lib\net46\Accord.Math.Noncommercial.dll" />
<file src="..\..\Release\net46\Noncommercial\Accord.Math.Noncommercial.xml" target="lib\net46\Accord.Math.Noncommercial.xml" />
</files>
</package>
17 changes: 11 additions & 6 deletions Setup/NuGet/Accord.Math.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,24 @@
</dependencies>
</metadata>
<files>
<file src="..\..\Release\net35\Accord.Math.dll" target="lib\net35\Accord.Math.dll" />
<file src="..\..\Release\net35\Accord.Math.xml" target="lib\net35\Accord.Math.xml" />
<file src="..\..\Release\net35\Accord.Math.dll" target="lib\net35\Accord.Math.dll" />
<file src="..\..\Release\net35\Accord.Math.xml" target="lib\net35\Accord.Math.xml" />
<file src="..\..\Release\net35\Accord.Math.Core.dll" target="lib\net35\Accord.Math.Core.dll" />
<file src="..\..\Release\net35\Accord.Math.Core.xml" target="lib\net35\Accord.Math.Core.xml" />

<file src="..\..\Release\net40\Accord.Math.dll" target="lib\net40\Accord.Math.dll" />
<file src="..\..\Release\net40\Accord.Math.xml" target="lib\net40\Accord.Math.xml" />
<file src="..\..\Release\net40\Accord.Math.dll" target="lib\net40\Accord.Math.dll" />
<file src="..\..\Release\net40\Accord.Math.xml" target="lib\net40\Accord.Math.xml" />
<file src="..\..\Release\net40\Accord.Math.Core.dll" target="lib\net40\Accord.Math.Core.dll" />
<file src="..\..\Release\net40\Accord.Math.Core.xml" target="lib\net40\Accord.Math.Core.xml" />

<file src="..\..\Release\net45\Accord.Math.dll" target="lib\net45\Accord.Math.dll" />
<file src="..\..\Release\net45\Accord.Math.xml" target="lib\net45\Accord.Math.xml" />
<file src="..\..\Release\net45\Accord.Math.dll" target="lib\net45\Accord.Math.dll" />
<file src="..\..\Release\net45\Accord.Math.xml" target="lib\net45\Accord.Math.xml" />
<file src="..\..\Release\net45\Accord.Math.Core.dll" target="lib\net45\Accord.Math.Core.dll" />
<file src="..\..\Release\net45\Accord.Math.Core.xml" target="lib\net45\Accord.Math.Core.xml" />

<file src="..\..\Release\net46\Accord.Math.dll" target="lib\net46\Accord.Math.dll" />
<file src="..\..\Release\net46\Accord.Math.xml" target="lib\net46\Accord.Math.xml" />
<file src="..\..\Release\net46\Accord.Math.Core.dll" target="lib\net46\Accord.Math.Core.dll" />
<file src="..\..\Release\net46\Accord.Math.Core.xml" target="lib\net46\Accord.Math.Core.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Neuro.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@

<file src="..\..\Release\net45\Accord.Neuro.dll" target="lib\net45\Accord.Neuro.dll" />
<file src="..\..\Release\net45\Accord.Neuro.xml" target="lib\net45\Accord.Neuro.xml" />

<file src="..\..\Release\net46\Accord.Neuro.dll" target="lib\net46\Accord.Neuro.dll" />
<file src="..\..\Release\net46\Accord.Neuro.xml" target="lib\net46\Accord.Neuro.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Statistics.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Accord.Statistics.dll" target="lib\net45\Accord.Statistics.dll" />
<file src="..\..\Release\net45\Accord.Statistics.xml" target="lib\net45\Accord.Statistics.xml" />

<file src="..\..\Release\net46\Accord.Statistics.dll" target="lib\net46\Accord.Statistics.dll" />
<file src="..\..\Release\net46\Accord.Statistics.xml" target="lib\net46\Accord.Statistics.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.DirectShow.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Accord.Video.DirectShow.dll" target="lib\net45\Accord.Video.DirectShow.dll" />
<file src="..\..\Release\net45\Accord.Video.DirectShow.xml" target="lib\net45\Accord.Video.DirectShow.xml" />

<file src="..\..\Release\net46\Accord.Video.DirectShow.dll" target="lib\net46\Accord.Video.DirectShow.dll" />
<file src="..\..\Release\net46\Accord.Video.DirectShow.xml" target="lib\net46\Accord.Video.DirectShow.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.FFMPEG.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@

<file src="..\..\Release\net45\GPL\Accord.Video.FFMPEG.dll" target="lib\net45\Accord.Video.FFMPEG.dll" />
<file src="..\..\Release\net45\GPL\Accord.Video.FFMPEG.xml" target="lib\net45\Accord.Video.FFMPEG.xml" />

<file src="..\..\Release\net46\GPL\Accord.Video.FFMPEG.dll" target="lib\net46\Accord.Video.FFMPEG.dll" />
<file src="..\..\Release\net46\GPL\Accord.Video.FFMPEG.xml" target="lib\net46\Accord.Video.FFMPEG.xml" />

<file src="..\..\Externals\ffmpeg\bin\avcodec-53.dll" target="build\avcodec-53.dll" />
<file src="..\..\Externals\ffmpeg\bin\avdevice-53.dll" target="build\avdevice-53.dll" />
Expand Down
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.Kinect.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@

<file src="..\..\Release\net45\Accord.Video.Kinect.dll" target="lib\net45\Accord.Video.Kinect.dll" />
<file src="..\..\Release\net45\Accord.Video.Kinect.xml" target="lib\net45\Accord.Video.Kinect.xml" />

<file src="..\..\Release\net46\Accord.Video.Kinect.dll" target="lib\net46\Accord.Video.Kinect.dll" />
<file src="..\..\Release\net46\Accord.Video.Kinect.xml" target="lib\net46\Accord.Video.Kinect.xml" />

<file src="..\..\Externals\libfreenect\freenect.dll" target="build\x86\freenect.dll" />
<file src="..\..\Externals\libfreenect\APACHE20" target="build\x86\FREENECT-LICENSE.txt" />
Expand Down
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.VFW.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Accord.Video.VFW.dll" target="lib\net45\Accord.Video.VFW.dll" />
<file src="..\..\Release\net45\Accord.Video.VFW.xml" target="lib\net45\Accord.Video.VFW.xml" />

<file src="..\..\Release\net46\Accord.Video.VFW.dll" target="lib\net46\Accord.Video.VFW.dll" />
<file src="..\..\Release\net46\Accord.Video.VFW.xml" target="lib\net46\Accord.Video.VFW.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.Ximea.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@

<file src="..\..\Release\net45\Accord.Video.Ximea.dll" target="lib\net45\Accord.Video.Ximea.dll" />
<file src="..\..\Release\net45\Accord.Video.Ximea.xml" target="lib\net45\Accord.Video.Ximea.xml" />

<file src="..\..\Release\net46\Accord.Video.Ximea.dll" target="lib\net46\Accord.Video.Ximea.dll" />
<file src="..\..\Release\net46\Accord.Video.Ximea.xml" target="lib\net46\Accord.Video.Ximea.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Video.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@

<file src="..\..\Release\net45\Accord.Video.dll" target="lib\net45\Accord.Video.dll" />
<file src="..\..\Release\net45\Accord.Video.xml" target="lib\net45\Accord.Video.xml" />

<file src="..\..\Release\net46\Accord.Video.dll" target="lib\net46\Accord.Video.dll" />
<file src="..\..\Release\net46\Accord.Video.xml" target="lib\net46\Accord.Video.xml" />
</files>
</package>
3 changes: 3 additions & 0 deletions Setup/NuGet/Accord.Vision.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@

<file src="..\..\Release\net45\Accord.Vision.dll" target="lib\net45\Accord.Vision.dll" />
<file src="..\..\Release\net45\Accord.Vision.xml" target="lib\net45\Accord.Vision.xml" />

<file src="..\..\Release\net46\Accord.Vision.dll" target="lib\net46\Accord.Vision.dll" />
<file src="..\..\Release\net46\Accord.Vision.xml" target="lib\net46\Accord.Vision.xml" />
</files>
</package>
Loading

0 comments on commit a11e074

Please sign in to comment.