Currently we can run WPF projects in VS2015 thanks to some MSBuild tips from the Roslyn team.
However, there are some issues when it comes to using Alive on WPF projects in Visual Studio 2013. The gory details can be found at dotnet/roslyn/issues/2779.
We have a couple workarounds in mind. First of all, all users wishing to use Alive on VS2013 must install the Visual Studio 2015 Build Tools via the following.
- Visit: https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs.aspx
- Click "Additional Tools"
- Click "Microsoft Build Tools 2015 RC"
- Download and run.
Now we have two options:
- Hopefully we can figure out proper use of
pkgdef to provide binding redirects telling VS to use the 2015 build tools.
- Alternatively, we can automatically modify
devenv.exe.config with the proper redirects. I'd rather not do this, but it has worked in our tests and allows Alive to function on WPF projects.
We'll close this issue when we've made a decision.
Currently we can run WPF projects in VS2015 thanks to some MSBuild tips from the Roslyn team.
However, there are some issues when it comes to using Alive on WPF projects in Visual Studio 2013. The gory details can be found at dotnet/roslyn/issues/2779.
We have a couple workarounds in mind. First of all, all users wishing to use Alive on VS2013 must install the Visual Studio 2015 Build Tools via the following.
Now we have two options:
pkgdefto provide binding redirects telling VS to use the 2015 build tools.devenv.exe.configwith the proper redirects. I'd rather not do this, but it has worked in our tests and allows Alive to function on WPF projects.We'll close this issue when we've made a decision.