Merge pull request #7617 from Mailaender/fuzzy-nuget
Removed FuzzyLogicLibrary.dll binary from source code management
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -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
|
||||
*~
|
||||
|
||||
BIN
thirdparty/FuzzyLogicLibrary.dll
vendored
BIN
thirdparty/FuzzyLogicLibrary.dll
vendored
Binary file not shown.
5
thirdparty/README
vendored
5
thirdparty/README
vendored
@@ -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
|
||||
|
||||
8
thirdparty/fetch-thirdparty-deps.ps1
vendored
8
thirdparty/fetch-thirdparty-deps.ps1
vendored
@@ -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
|
||||
}
|
||||
|
||||
7
thirdparty/fetch-thirdparty-deps.sh
vendored
7
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user