Blend for Visual Studio SDK for .NET in VS2019 - blend

I need Blend for Visual Studio SDK for .NET in Visual Studio 2019 to use Interaction Triggers. In VS2017 it was in Blend for Visual Studio SDK for .NET as you can see here:
Visual Studio 2017 - What happened to Expression interactions?
Where is this option in VS2019?
Thank you
UPDATE: what I really need is System.Windows.Interactivity and Microsoft.Expression.Interactions, both of them version 4.5.0.0

You can try these nuget packages:
Microsoft.Expression.Blend.SDK.WPF: Microsofts expression blend SDK for WPF (4.0)
Microsoft.SDK.Expression.Blend: Micosoft Expression Blend SDK for 4.5
Expression.Blend.Sdk: Contains System.Windows.Interactivity (4.0, 4.5)
They all wrap Blend SDK dlls into a nuget package.

As for 2020 both of them were replaced by Behaviours as mentioned in Jan's answer in other question.
Link to NuGet package to Microsoft.Xaml.Behaviors.Wpf.
If you want to use them you have to:
Remove reference to “Microsoft.Expression.Interactions” and “System.Windows.Interactivity”
Install the Microsoft.Xaml.Behaviors.Wpf NuGet package.
XAML files – replace xmlns namespaces of interactions and interactivity with behaviour.
C# file - replace usings of interactions with behaviours.

Related

MSBuildWorkspace.Create() throws System.Reflection.ReflectionTypeLoadException

I have Visual Studio 2015. I also have installed MSBuild Tools 2015. The following code gives me exception when I update Microsoft.CodeAnalysis to 2.2.0
var workspace=MSBuildWorkspace.Create();
You need to add the MSBuild libraries to your project (Microsoft.Build, Microsoft.Build.Utilities.Core etc) from Nuget (for example).
I think, that a better solution is a work with the Roslyn 2.2.0 libraries in Visual Studio 2017.

Missing Other Project Types in visual studio 2012

I want to create my installer. But missing Other Project Type > Visual Studio Installer > Setup Project
They are not supported anymore on VS2012.
http://blogs.msdn.com/b/buckh/archive/2011/03/17/visual-studio-setup-projects-vdproj-will-not-ship-with-future-versions-of-vs.aspx
VDProjects are no longer supported. Either:
Use older versions of visual studio to build existing VDPROJ project types (you can keep them in the solution)
If creating new installers, use a framework such as WiX which contains Visual Studio integration. Little bit of a learning curve, but a very good product (and free). This will produce an MSI from XML within a WiX project in visual studio after you install it.
http://wixtoolset.org/

WIX: detect if visual studio 2013 installed

All we know about this charming way of detection Visual Studio path and others: wixvsextension
Also we know that VS2013 is supported in latest WIX builds.
But Visual Studio 2013 was released and I cannot find any documentation about VS2013_ROOT_FOLDER and VS2013_IDE_VWD_PROJECTSYSTEM_INSTALLED.
Are they implemented but not documented?
Yes, they're implemented but not documented. That's a bug.

VS2012 RTM missing .net 4.5 and mvc project templates

On Windows 8 RTM and just installed Vs2012 Ultimate RTM, I'm unable to create a .net 4.5 project nor a .net 4 or 4.5 ASP.NET MVC project. I've done a repair of VS2012, which did not fix it. Is there something obvious I'm doing wrong?
I also had the same problem..
Doing the following procedure solved it.
Copy the folder \packages\WPT from the visual studio 2012 installer CD to your desktop.
Uninstall the following in this order..
aspnetmvc4vs11tools.msi
aspnetmvc4.msi
aspnetmvc3vs11tools.msi
aspnetmvc3.msi
Then install these in this order.
aspnetmvc3.msi
aspnetmvc3vs11tools.msi
aspnetmvc4.msi
aspnetmvc4vs11tools.msi
Trying to repair didn't fix the problem. You have to remove and install these..
Hope this will help...
Your install is probably corrupted. VS 2012 needs .net 4.5 to run, so something has gone wrong if it's not available.
I would try uninstalling and reinstalling. It's brute force but it generally works.
You probably do not have the Windows 8.1 SDK installed. Visual Studio 2012, nor its updates, link the .NET Framwork 4.5 libraries for development.
Windows 8.1 SDK
You don't have to install the full SDK if you are just looking for the option to build web apps, just the .NET Framework 4.5.1 option in the installer. The full install is about 1.1GB, but just the .NET installer is only 72MB.
For those reading this that have not updated their copy of Visual Studio 2012, make sure you also have these installed:
Visual Studio 2012 Update 4
ASP.NET and Web Tools 2013.1 for Visual Studio 2012
Hope this helps!
Change .net framework version to 4.5

How Upgrade A Project From .Net 2.0 To .Net 4.0 Using Visual Studio 2010?

i am a c# web developer and vb.net project is not familiar for me.
i have a project in .net 2.0 that i want to upgrade it to .net 4.0 with using visual studio 2010.
when i open that project with visual studio 2010 every thing is normal and it seems it is working in .net 2.0.
i created a new project with visual studio and added all .net 2.0 project files to the new project.
but after that i had many errors like below :
'List' is not declared. It may be inaccessible due to its protection
what did i do wrong and how can i upgrade that project?
also where can i find the project's .Net framework ver for VB language (in c# we can change it by right clicking on project and properties, but here there is no such a properties)?
thanks in advance
You have "Visual Studio Conversion Wizard"
http://msdn.microsoft.com/en-us/library/dd483478(v=vs.100).aspx