Registering COM referenced DLLs on a build server

前端 未结 4 1835
不思量自难忘°
不思量自难忘° 2020-12-14 02:53

We\'re developing a C# application that references a few COM libraries (AutoIT for example).

I am including all referenced components under source control, in a 3rd

4条回答
  •  孤城傲影
    2020-12-14 03:46

    1) Try to reference the COM libraries to your csproj as references - if you haven't done so.

    2) Try to append to your csproj file:

    
        ...
        
            
        
    
    

    PS: if you are using some sort of build server software you should not modify the csproj but the script used by the build at the server.

提交回复
热议问题