Merge pull request #7617 from Mailaender/fuzzy-nuget

Removed FuzzyLogicLibrary.dll binary from source code management
This commit is contained in:
Matthias Mailänder
2015-03-10 06:50:56 +01:00
5 changed files with 17 additions and 6 deletions

1
.gitignore vendored
View File

@@ -43,6 +43,7 @@ thirdparty/nuget.exe
thirdparty/windows/lua51.dll
thirdparty/windows/zlib1.dll
thirdparty/windows/soft_oal.dll
thirdparty/FuzzyLogicLibrary.dll
# backup files by various editors
*~

Binary file not shown.

5
thirdparty/README vendored
View File

@@ -5,11 +5,6 @@ Eluant.dll
Commit 483f326bd071024f58dc7917da81e31ef680e85e
MIT license
FuzzyLogicLibrary.dll
http://sourceforge.net/projects/fuzzynet/
Version 1.2.0
GPL v2.0 license
SDL2-CS.dll
https://github.com/flibitijibibo/SDL2-CS/
Commit e8731efadb249a40f46d646e2b783ec588326ea6

View File

@@ -121,3 +121,11 @@ if (!(Test-Path "Moq.dll"))
cp Moq.4.2.1502.0911/lib/net40/Moq.dll .
rmdir Moq.4.2.1502.0911 -Recurse
}
if (!(Test-Path "FuzzyLogicLibrary.dll"))
{
echo "Fetching FuzzyLogicLibrary from NuGet."
./nuget.exe install FuzzyLogicLibrary -Version 1.2.0
cp FuzzyLogicLibrary.1.2.0/bin/Release/FuzzyLogicLibrary.dll .
rmdir FuzzyLogicLibrary.1.2.0 -Recurse
}

View File

@@ -65,3 +65,10 @@ if [ ! -f Moq.dll ]; then
cp ./Moq.4.2.1502.0911/lib/net40/Moq.dll .
rm -rf Moq.4.2.1502.0911
fi
if [ ! -f FuzzyLogicLibrary.dll ]; then
echo "Fetching FuzzyLogicLibrary from NuGet."
nuget install FuzzyLogicLibrary -Version 1.2.0
cp ./FuzzyLogicLibrary.1.2.0/bin/Release/FuzzyLogicLibrary.dll .
rm -rf FuzzyLogicLibrary.1.2.0
fi