Tried New VISX with VS 2013 and Win 10


Author
Message
StrataFrame Team
S
StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
Sorry for the delays guys, I've been on vacation.  I will get you a fix.
Michael Reese
Michael Reese
StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)
Group: StrataFrame Users
Posts: 235, Visits: 1.6K
Thanks Ben, 

Welcome back. I'm also not seeing the SF templates in VS 2015 new projects. I'm also having deactivation issues. I have a new workstation and de-activated everything online at SF but do not seem to be able to re-activate?

Thanks
Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Ben,
Ben Chase (9/17/2015)
Sorry for the delays guys, I've been on vacation.  I will get you a fix.

Welcome back Smile
I got the feeling you were not around, hope you can get this working soon.

Thanks and good luck!!!!

Edhy Rijo

StrataFrame Team
S
StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
The VSIX has been reposted on the other thread off the posted releases section of the forum home page.  It now includes all of the templates, and has the null reference exceptions resolved for the type editors and the create toolbox tab.

Also included are new AddIns and Extensibility assemblies, so you'll need to replace those in the GAC.
Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Ben,
I installed the VISX file and copied the dlls to the folders suggested and getting an error when loading VS saying this:
"The MicroFour_StrataFrame_PackagePackage" package did not load correctly.

Here is the error entry from the VS ActivityLog.xml file:

 <entry>
    <record>548</record>
    <time>2015/09/18 18:17:52.644</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MicroFour_StrataFrame_PackagePackage]</description>
    <guid>{0D9A9C3F-5EF0-4D1F-B38E-7BC0918E291D}</guid>
  </entry>
  <entry>
    <record>549</record>
    <time>2015/09/18 18:17:52.656</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [MicroFour_StrataFrame_PackagePackage]</description>
    <guid>{0D9A9C3F-5EF0-4D1F-B38E-7BC0918E291D}</guid>
    <hr>80131513</hr>
    <errorinfo>Method not found: 'Void MicroFour.StrataFrame.Extensibility.ExtensibilityBasics.Initialize(System.IServiceProvider, EnvDTE80.DTE2)'.</errorinfo>
  </entry>


I am on Windows 10 Pro and the way I am updating the dlls in the GAC is by drag them to the C:\Windows\Assemblies folder.  Will try uninstalling them first and then drag the new ones.


Edhy Rijo

StrataFrame Team
S
StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
Unfortunately, that won't work.  The C:\Windows\Assembly folder is the GAC only for .NET 2.0, and the VSPackage was written in 4.5, so the GAC is in C:\Windows\Microsoft.NET\assembly, and it doesn't have a nice viewer that masks the folders behind it.  You'll have the best luck running a VS2015 Developer Command Prompt and using gacutil -if to install the DLL.
Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Ben,

Installation error fixed by doing the following:
  1. Run the Developer Command Prompt for VS 2015.
  2. Uninstall assemblies.
  3. Install new assemblies.
Here are the command line I used to uninstall and install the assemblies:



-- Uninstall assemblies first.
gacutil.exe -u "MicroFour StrataFrame AddIns.dll"
gacutil.exe -u "MicroFour StrataFrame Extensibility.dll"

-- Install assemblies from the Common Files folder.
gacutil.exe /i "%CommonProgramFiles(x86)%\MicroFour\StrataFrame\MicroFour StrataFrame AddIns.dll" /f
gacutil.exe /i "%CommonProgramFiles(x86)%\MicroFour\StrataFrame\MicroFour StrataFrame Extensibility.dll" /f




Now back to test SF types in my forms and BOs.

Edhy Rijo

Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Ben,

I am still getting extensibility errors, please see this video: http://screencast.com/t/x6R7iRiF

I confirmed that both assemblies are now in the C:\Windows\Microsoft.NET\assembly\GAC_32 in their own folders, so they were updated properly with modified date 9/18/2015 2:39 PM date.

What am I missing?

Edhy Rijo

Edited 9 Years Ago by Edhy Rijo
StrataFrame Team
S
StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)StrataFrame Developer (4.3K reputation)
Group: StrataFrame Developers
Posts: 3K, Visits: 2.5K
Edhy, I have emailed you new AddIn and Extensibility DLLs.  That error you are receiving is because you don't have an object selected within the Solution Explorer, and the Extensibility was using the currently selected object to obtain the ITypeResolutionService object.  It's not very intuitive, so I have use a different IServiceProvider to retrieve the ITypeResolutionService.  Once you verify that those work, I will repost them on the releases topic so everyone can get them.
Michael Reese
Michael Reese
StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)StrataFrame User (403 reputation)
Group: StrataFrame Users
Posts: 235, Visits: 1.6K
Can someone at SF reset my license? I reinstall.

Thanks
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search