VSSDK for VS2015 (NetMF 4.4)

hi guys can anyone build vsix file if yes can share folder

VSSDK14 from path (but only who can build vsix file )

C:\Program Files (x86)\Microsoft Visual Studio 14.0\VSSDK

because i got error

Building SDK …
Microsoft ® Build Engine version 14.0.23107.0
Copyright © Microsoft Corporation. All rights reserved.

Building VSIX packages …
Microsoft ® Build Engine version 14.0.23107.0
Copyright © Microsoft Corporation. All rights reserved.

C:\netfm\netmf4_4\setup\ProductSDK\VsixPackages.dirproj(76,8): warning NETMF: Visual Studio 2015 SDK not found VSIX package will not be generated

Check your VS installation and make sure that you have the Visual Studio Extension SDK installed.

Regards,
Mark

yes it installed

and i have repeated on three machine

  • Visual Studio 2015 Enterprise Update 3
  • Visual Studio 2015 Professional

i’ve got same message

Building VSIX packages …
Microsoft ® Build Engine version 14.0.23107.0
Copyright © Microsoft Corporation. All rights reserved.

C:\netfm\netmf4_4\setup\ProductSDK\VsixPackages.dirproj(76,8): warning NETMF: Visual Studio 2015 SDK not found VSIX package will not be generated

even i installed Visual_Studio_2015_SDK

  • separated but still same error or i missing something

i can build MSI files for SDK
but i can not build VSIX for Visual Studio 2015 …

I’m talking for .Net Micro Framework 4.4

resolved problem (problem is caused to file)
D:\netmf44RTW\Framework\CorDebug\vs14\cordebugvs14.csproj

line
< Reference Include = " EnvDTE " / >

changed to
< Reference Include=“EnvDTE, Version=8.0.0.0,publicKeyToken=b03f5f7f11d50a3a,culture=neutral” >
< SpecificVersion > true < /SpecificVersion >

because it checked for version 7.3.333.0 which onese do not exist on GAC so i FORCED to use this version which ones existed on GAC (but what make me confused this ones is similiar to EnvDTE80)

now it create VSIX file for VS2015

1 Like