aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Costa <miguel.costa@qt.io>2017-09-15 17:45:36 +0200
committerMiguel Costa <miguel.costa@qt.io>2017-09-18 08:35:11 +0000
commita110c5bfc136b2285dcc75294afc00ea5090b733 (patch)
tree3a1cf5bce28f59544462b1f504e613b79c30fb9b
parente4c56d0753e88a0b5ce0c576fb4856c4b82225c3 (diff)
Fix error with "embedded interop type" after update of VS 2017
In the VS 2017 build, added a reference to: Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime.dll After the update of Visual Studio to version 15.3.4, this assembly must be added as a reference, otherwise we get a few errors with: "Cannot find the interop type that matches the embedded interop type". Change-Id: If871da35eb6517b07b7cf23194fdf38dd8503bf4 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--src/config/15.0/qtvstools.targets1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/15.0/qtvstools.targets b/src/config/15.0/qtvstools.targets
index 0f8c3049..9dad23f5 100644
--- a/src/config/15.0/qtvstools.targets
+++ b/src/config/15.0/qtvstools.targets
@@ -15,6 +15,7 @@
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+ <Reference Include="Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime, Version=15.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"/>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />