-
Notifications
You must be signed in to change notification settings - Fork 65
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
Visual Studio 2017 RC #1179
Comments
Change this to VS15 when appveyor supports it
We really really need this, any updates not this? |
Is the image created to include everything the "Visual Studio 2015" image has + Visual Studio 2017 RC with SDK? |
Well, this is what we were going to do - install VS 2017 RC on top of VS 2015 image. Would that work or you have other suggestions? |
One suggestion might be to include the build number in the image name... the version of the RC was updated two days ago, which is later than the one released last Wed. Might be safe to assume there'll be more, so there'll either need to be a way to identify them or something to keep an eye on the updates and roll out new images. |
I think we'll be maintaining a single |
We've got a build worker image with Visual Studio 2017 RC installed. Before making it available for everyone we'd like to do some for of "private beta", so please let us know if you want this image to be added under your account (either post your AppVeyor account name here or send to |
@FeodorFitsner I would love to give it a spin. Account name "madskristensen" |
andrewvk |
Image named |
ejsmith |
@ejsmith - done |
@FeodorFitsner It works great! Just built an extension successfully. Thanks |
Yes please, georgeduckett |
@FeodorFitsner I have an extension with a unit test project and when AppVeyor builds it, I get this issue:
|
ours failed with
Appveyor.yml is here. |
Thanks, will take a look. |
Can I try it too? I'm logged into AppVeyor with this Github account. |
@georgeduckett, @SirRade - added |
@FeodorFitsner, just tried compiling my extension which uses some C#7 syntax and it fails: https://ci.appveyor.com/project/georgeduckett/teamcoding I believe I've set the environment correctly. Is there something else I need to do? |
Add this to project's
|
@FeodorFitsner That's done the trick, thanks. Any reason why setting the Build Worker Image in Settings for the project didn't work? |
because if it's appveyor.yml then all settings should be there - UI settings are ignored. |
Ahh ok, thanks. |
I would like to try the beta. (using this github account) |
@FeodorFitsner Works great so far, thank you very much. |
I would love to be in this beta. Account name is trinocity |
@kzu I didn't know that existed. I see you're the owner. Will give it a look and see if we should go that way. I think the required VSIX still should be installed if it's intended that you should be able to use the installed version on the worker image, however. |
I'm just redistributing in a convenient way the binaries, that's all. I did for this same reason, avoiding requirements on CI bots |
All right, WiX extension for VS 2017 was missing. It should be fine now. |
@FeodorFitsner, I have just tried new Visual Studio 2017 image (https://ci.appveyor.com/project/litichevskiydv/tipsandtricks/build/1.0.21) and in TESTS tab I see "The build job has not produced any test results", but in CONSOLE I see "Total tests: 88. Passed: 88...". Previously everything worked fine (https://ci.appveyor.com/project/litichevskiydv/tipsandtricks/build/1.0.6). Please, help. |
@FeodorFitsner can you please add a custom image with VS 2017 + VS 2015 to my account please |
@bhagvan both are installed in the Visual Studio 2017 image - see this comment and the list of pre-installed software for more detail of what's on each VM. |
@FeodorFitsner confirm successful MSI build with Wix 3.11 RC, thanks for the superb reactivity! |
@csmager thanks for the quick response ... i will look into my build scripts |
@FeodorFitsner does the VS 2017 image have any version of SQL Server installed? Even LocalDB would work. |
@jbogard I believe it does, we use the Azure storage emulator, when it starts I noticed it logs the following:
Here's the full list of install software: https://www.appveyor.com/docs/build-environment/#pre-installed-software If you want to start SQL express, here's the documentation to follow: https://www.appveyor.com/docs/services-databases/#sql-server-2016 |
All - thank you very much for your efforts in testing Please switch to |
Currently I am not able to RDP into machines running on the new 2017 image. I tried 2015 machines and there it works. Can somebody confirm this behavior? |
Previously I could do builds with VS 2008/2010/2012/2013/2015 all at the same time. Now I want to incorporate 2017 as well. To do that I need to set the image to I tried adding
but it doesn't seem to work - only when setting it globally does it actually set anything - and if I set 2017 globally - then there are no older VS versions. How can I tackle this problem? |
@onqtam You need to set the
|
@micbou omg Thanks! just tested it and it worked! |
Does anyone know a good way to set the |
Check out Serilog and its build and project file.
…On Sat, Mar 18, 2017 at 7:39 AM Harry McIntyre ***@***.***> wrote:
Does anyone know a good way to set the <PackageVersion> in csproj to the
AppVeyor build no? All my packages are building as foo.1.0.0.nupkg
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1179 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAGYMrlsoV1Kw1uACVyGx7h6Jbi9rHgCks5rm9BqgaJpZM4K0h-h>
.
|
@mcintyre321 I got it working on a project I manage. Essentially:
Here's the documentation. |
Thanks @jbogard and @JSkimming I brute forced it with this
|
|
After installing VS 2017 RC on top of VS 2015 base image:
Install AppVeyor
vstest.console
logger and MSTestV2 support librariesReplace MSBuild in
PATH
with MSBuild 15.0Install latest NuGet 3.5
Pre-cache .NET Core:
cd %temp%
md app1
cd app1
dotnet new
dotnet restore
dotnet run
Install CMake 3.7.1
Re-install Git and Git LFS
Disable
Bonjour Service
andIpOverUsbSvc
and services:Set-Service -Name 'Bonjour Service' -StartupType Disabled
Set-Service -Name 'IpOverUsbSvc' -StartupType Disabled
Apply workaround for NuGet Build Tasks
The text was updated successfully, but these errors were encountered: