fetch FuzzyLogicLibrary from NuGet
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -43,6 +43,7 @@ thirdparty/nuget.exe
|
|||||||
thirdparty/windows/lua51.dll
|
thirdparty/windows/lua51.dll
|
||||||
thirdparty/windows/zlib1.dll
|
thirdparty/windows/zlib1.dll
|
||||||
thirdparty/windows/soft_oal.dll
|
thirdparty/windows/soft_oal.dll
|
||||||
|
thirdparty/FuzzyLogicLibrary.dll
|
||||||
|
|
||||||
# backup files by various editors
|
# 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
|
Commit 483f326bd071024f58dc7917da81e31ef680e85e
|
||||||
MIT license
|
MIT license
|
||||||
|
|
||||||
FuzzyLogicLibrary.dll
|
|
||||||
http://sourceforge.net/projects/fuzzynet/
|
|
||||||
Version 1.2.0
|
|
||||||
GPL v2.0 license
|
|
||||||
|
|
||||||
SDL2-CS.dll
|
SDL2-CS.dll
|
||||||
https://github.com/flibitijibibo/SDL2-CS/
|
https://github.com/flibitijibibo/SDL2-CS/
|
||||||
Commit e8731efadb249a40f46d646e2b783ec588326ea6
|
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 .
|
cp Moq.4.2.1502.0911/lib/net40/Moq.dll .
|
||||||
rmdir Moq.4.2.1502.0911 -Recurse
|
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
|
||||||
|
}
|
||||||
|
|||||||
9
thirdparty/fetch-thirdparty-deps.sh
vendored
9
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -64,4 +64,11 @@ if [ ! -f Moq.dll ]; then
|
|||||||
nuget install Moq -Version 4.2.1502.0911
|
nuget install Moq -Version 4.2.1502.0911
|
||||||
cp ./Moq.4.2.1502.0911/lib/net40/Moq.dll .
|
cp ./Moq.4.2.1502.0911/lib/net40/Moq.dll .
|
||||||
rm -rf Moq.4.2.1502.0911
|
rm -rf Moq.4.2.1502.0911
|
||||||
fi
|
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