<?xml version="1.0" encoding="utf-8"?>
<!--
  =============================================================================
  B28 English — Excel-DNA .dna configuration file
  B28 英文版 — Excel-DNA .dna 配置文件
  =============================================================================
  Notes:
  - This file is auto-generated when installing ExcelDna.AddIn. Don't hand-edit unless necessary.
  - <ExternalLibrary Pack="true" /> means: embed the dll into the xll — cleanest single-file deploy.
  =============================================================================
-->
<DnaLibrary Name="MyExcelAddIn AddIn"
            RuntimeVersion="v4.0"
            Description="B28 tutorial sample: custom functions + RTD real-time data"
            >

  <!--
    ExternalLibrary: declare which dll to load.
    Pack="true": embed the dll into the .xll during packaging,
                 so distribution is just one .xll (single-file deploy).
    Path: relative path; file name must match .csproj's AssemblyName.
  -->
  <ExternalLibrary Path="MyExcelAddIn.dll" Pack="true" />

  <!--
    If you need to reference third-party dlls later:

    <Reference Path="SomeThirdParty.dll" Pack="true" />

    The ExcelDna.AddIn "all-in-one" package already includes everything needed.
  -->

</DnaLibrary>