.NET应用程序和OCX的清单文件

时间:2015-05-14 13:20:13

标签: .net windows manifest ocx

我有一个带有这个C#代码的测试应用程序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ArchivoManifest
{
    class Program
    {
        static void Main(string[] args)
        {
            FiscalPrinterLib.HASAR hasar = new FiscalPrinterLib.HASAR();
            Console.WriteLine("OK");
            Console.ReadLine();
        }
    }
}

对象 HASAR 包含在 Fiscal051122.ocx link)中。要避免使用regSvr32注册OCX文件,需要为ArchivoManifest.exe和Fiscal051122.ocx创建清单文件。

尝试不同的方式但不起作用。有什么想法吗?

谢谢!

0 个答案:

没有答案