繁体   English   中英

无法添加对“.dll”的引用

[英]A reference to “ .dll” this could not be added

在我的解决方案中的项目中,我有以下代码来生成.dll程序集。 主要使用msdn文档stackoverflow上的另一个问题的答案开发。 代码构建并运行正常,并在项目中的bin \\ debug文件夹中生成“.dll”程序集。 但是,我在解决方案中的其他项目中引用程序集时遇到问题。 我右键单击references-> add reference并选择“.dll”文件。 当我单击确定时,我会收到此问题标题中所述的错误消息。 谢谢。

        // Retrieve application domain ie environment where applications execute
        // This is done because if an assembly is loaded into the default 
        // application domain it cannot be unloaded from memory while the process
        // is running. However if another application domain is opened to load
        // and execute the assembly, the assembly is unloaded when the application
        // domain is unloaded. 
        AppDomain currentDomain = AppDomain.CurrentDomain;

        // Now create a dynamic assembly in the current application domain
        // and allow it to be executed and saved to disk
        AssemblyName name = new AssemblyName("FieldIdEnum");
        AssemblyBuilder assemblyBuilder = currentDomain.DefineDynamicAssembly(name,
            AssemblyBuilderAccess.RunAndSave);

        // Now we define a dynamic module in the assembly that was just created
        // For this single single module assembly the module has the same name as 
        // the assembly
        ModuleBuilder moduleBuilder = assemblyBuilder.DefineDynamicModule(name.Name,
            name.Name + ".dll");

        // Now we define the public enumeration with the name "DbFieldId" and an
        // underlying type of Integer
        EnumBuilder myEnumBuilder = moduleBuilder.DefineEnum("EnumeratedTypes.DbFieldId",
            TypeAttributes.Public, typeof(int));

        // Now retrieve the FieldId table from the database, bear in mind that the
        // string description will have white spaces, these need to be trimmed 
        // otherwise they are invalid for enum
        // For this to work a reference was added to ConsoleApplication4 and
        // Entity Framework
        using (FieldIdEntities dbEntities = new FieldIdEntities())
        {
            var lines = dbEntities.CSV_FIELD_DETAILS;
            foreach (var field in lines)
            {
                myEnumBuilder.DefineLiteral(field.DESCRIPTION.Replace(" ", String.Empty),               (int)field.FIELD_ID);
            }
        }

        // Now create the enum
        myEnumBuilder.CreateType();

        // If good so far save the assembly:
        assemblyBuilder.Save(name.Name + "dll");

您是否尝试将包含DLL的项目添加到同一解决方案中,然后在参考管理器中选择

解决方案 - >项目 - > [您的dll项目]

那么visual studio会添加适当的dll本身?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM