Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1 KB

README.md

File metadata and controls

26 lines (22 loc) · 1 KB

VisioComAddinNet5

Visio Addin based on .NET 5 (core) "Hello World" example. Adds a two buttons to the ribbon. Basically the same as the starter project created by my main extension, but for .NET 5 (core).

Created as proof of concept, to implement support for .NET5 in the main project in the future.

The base wizard for the "normal" .NET: https://marketplace.visualstudio.com/items?itemName=NikolayBelyh.ExtendedVisioAddinProject

Changes include:

  • retargeting everything to use .net5-windows
  • adding windows forms support
  • allow com hosting
  • Fix the method that reads bitmaps from resources
  • Replacing PIA references with COM references
  • Fix the installer to use AppId
  • Fix the installer to use self-registration
  <PropertyGroup>
    <TargetFramework>net5.0-windows</TargetFramework>
    <UseWindowsForms>true</UseWindowsForms>
    <EnableComHosting>true</EnableComHosting>
  </PropertyGroup>