diff options
Diffstat (limited to 'installer/install-fsautocomplete.cmd')
-rw-r--r-- | installer/install-fsautocomplete.cmd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/installer/install-fsautocomplete.cmd b/installer/install-fsautocomplete.cmd new file mode 100644 index 0000000..9403345 --- /dev/null +++ b/installer/install-fsautocomplete.cmd @@ -0,0 +1,18 @@ +@echo off
+
+setlocal
+
+curl -L -o dotnet-runtime-3.1.1-win-x64.zip "https://download.visualstudio.microsoft.com/download/pr/d9768135-4646-4839-9eea-b404bb940452/8275e4320514bab636b1627c62906ef9/dotnet-runtime-3.1.1-win-x64.zip"
+call "%~dp0\run_unzip.cmd" dotnet-runtime-3.1.1-win-x64.zip
+
+set url=https://ci.appveyor.com/api/projects/fsautocomplete/fsautocomplete/artifacts/bin/pkgs/fsautocomplete.netcore.zip?branch=master
+
+set zip=fsautocomplete.zip
+curl -L %url% -o %zip%
+call "%~dp0\run_unzip.cmd" %zip%
+
+echo @echo off ^
+
+%%~dp0\dotnet.exe fsautocomplete.dll %%* ^
+
+> fsautocomplete.cmd
|