diff --git a/build.py b/build.py
index c2ac964..c6c00db 100644
--- a/build.py
+++ b/build.py
@@ -152,7 +152,6 @@ def publish_official(platforms_names):
supported_platforms = [
'win32',
'win_amd64',
- 'win64',
'macosx_10_11_intel',
'manylinux1_x86_64',
'manylinux1_i686']
diff --git a/mssql-scripter.pyproj b/mssql-scripter.pyproj
index 9c31b76..9d6174f 100644
--- a/mssql-scripter.pyproj
+++ b/mssql-scripter.pyproj
@@ -66,13 +66,10 @@
-
-
-
-
+
+
-
@@ -83,8 +80,7 @@
-
-
+
\ No newline at end of file
diff --git a/mssqlscripter/mssqltoolsservice/external.py b/mssqlscripter/mssqltoolsservice/external.py
index dc89622..bd0e376 100644
--- a/mssqlscripter/mssqltoolsservice/external.py
+++ b/mssqlscripter/mssqltoolsservice/external.py
@@ -21,8 +21,7 @@
'manylinux1_x86_64': SQLTOOLSSERVICE_BASE + 'manylinux1/' + 'Microsoft.SqlTools.ServiceLayer-linux-x64-netcoreapp2.0.tar.gz',
'manylinux1_i686': SQLTOOLSSERVICE_BASE + 'manylinux1/' + 'Microsoft.SqlTools.ServiceLayer-linux-x64-netcoreapp2.0.tar.gz',
'macosx_10_11_intel': SQLTOOLSSERVICE_BASE + 'macosx_10_11_intel/' + 'Microsoft.SqlTools.ServiceLayer-osx-x64-netcoreapp2.0.tar.gz',
- 'win_amd64': SQLTOOLSSERVICE_BASE + 'win64/' + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
- 'win64': SQLTOOLSSERVICE_BASE + 'win64/' + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
+ 'win_amd64': SQLTOOLSSERVICE_BASE + 'winamd64/' + 'Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip',
'win32': SQLTOOLSSERVICE_BASE + 'win32/' + 'Microsoft.SqlTools.ServiceLayer-win-x86-netcoreapp2.0.zip'
}
@@ -39,7 +38,7 @@ def copy_sqltoolsservice(platform):
if not platform or platform not in SUPPORTED_PLATFORMS:
print('{} is not supported.'.format(platform))
print('Please provide a valid platform flag.' +
- '[win32, win_amd64, win64, manylinux1_x86_64, manylinux1_i686, macosx_10_11_intel]')
+ '[win32, win_amd64, manylinux1_x86_64, manylinux1_i686, macosx_10_11_intel]')
sys.exit(1)
copy_file_path = SUPPORTED_PLATFORMS[platform]
diff --git a/sqltoolsservice/win64/Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip b/sqltoolsservice/winamd64/Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip
similarity index 100%
rename from sqltoolsservice/win64/Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip
rename to sqltoolsservice/winamd64/Microsoft.SqlTools.ServiceLayer-win-x64-netcoreapp2.0.zip
diff --git a/tox.ini b/tox.ini
index 8eaba7c..fba45fc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,7 @@ setenv =
PYTHONIOENCODING=utf-8
deps=
- -r dev_requirements.txt
+ -rdev_requirements.txt
install_commands =
commands=