Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Visual Studio 2017 RC #76

Closed
jcansdale opened this issue Nov 21, 2016 · 6 comments
Closed

Add support for Visual Studio 2017 RC #76

jcansdale opened this issue Nov 21, 2016 · 6 comments
Assignees
Milestone

Comments

@jcansdale
Copy link
Owner

jcansdale commented Nov 21, 2016

NOTE: TestDriven.Net will be installed for Visual Studio 2017 RC (Community, Professional and Enterprise in their default locations).

Workaround:

The following BAT file must be run as admin user. Change VS2017SKU to "Community", "Professional" or "Enterprise" (depending on which Visual Studio 2017 SKU you have installed).

set VS2017SKU=Community
set VS2017IDE=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\%VS2017SKU%\Common7\IDE
set VS14IDE=%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\IDE
set TDEXT=Extensions\TestDriven
xcopy /S /I "%VS14IDE%\%TDEXT%" "%VS2017IDE%\%TDEXT%"
"%VS2017IDE%\devenv.exe" /updateConfiguration

Please subscribe to this issue for updates!

@jcansdale jcansdale added this to the v4.0-RC milestone Nov 21, 2016
@jcansdale jcansdale self-assigned this Nov 21, 2016
@jcouv
Copy link

jcouv commented Nov 28, 2016

Thanks a lot. That worked.

I ran the command with a small modification on the last line:

set VS2017SKU=Enterprise
set VS2017IDE=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\%VS2017SKU%\Common7\IDE
set VS14IDE=%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\Common7\IDE
set TDEXT=Extensions\TestDriven
xcopy /S /I "%VS14IDE%\%TDEXT%" "%VS2017IDE%\%TDEXT%"
"%VS2017IDE%\devenv.exe" /updateConfiguration

@jcansdale
Copy link
Owner Author

Oops, thanks for the fix! I've updated it above. I'm glad it worked (apart than that 😊).

@jcansdale jcansdale changed the title TestDriven.Net Beta2 doesn't work with Visual Studio 2017 RC Add support for Visual Studio 2017 RC Dec 12, 2016
@jcouv
Copy link

jcouv commented Mar 23, 2017

In case anybody is having the same problem with the preview channel of VS2017, here's the same script to copy from VS2017 to VS2017 Preview:

set VS2017SKU=Enterprise
set VS2017IDE=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\%VS2017SKU%\Common7\IDE
set VS2017PreviewIDE=%ProgramFiles(x86)%\Microsoft Visual Studio\Preview\%VS2017SKU%\Common7\IDE
set TDEXT=Extensions\TestDriven
xcopy /S /I "%VS2017IDE%\%TDEXT%" "%VS2017PreviewIDE%\%TDEXT%"
"%VS2017PreviewIDE%\devenv.exe" /updateConfiguration

@jcansdale
Copy link
Owner Author

@jcouv, thanks for the info! I didn't know about the preview channel. 😕

Is this it here?
https://www.visualstudio.com/en-us/news/releasenotes/vs2017-preview-relnotes

I was interested to find a Team Explorer standalone install.

@jcouv
Copy link

jcouv commented Mar 25, 2017

That looks like it, but I'm not sure. The installer (linked from the page you mentioned) installs in the same path as the installer I used (ie C:\Program Files (x86)\Microsoft Visual Studio\Preview\Enterprise).

@kzu
Copy link

kzu commented May 6, 2017

The workaround worked great for me too!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants