2017-12-18 303 views
0

我有一個SpecFlow Allure在本地工作,但在服務器上的問題沒有。我有Windows 2008服務器和我使用Gradle的.tpl文件。當我加入到我的TPL 相同的設置上的app.config `已安裝SpecFlow.Allure,但在服務器上它不起作用

<plugins>  
    <add name="Allure" type="Runtime"/></plugins><stepAssemblies> 
     <stepAssembly assembly="Allure.SpecFlowPlugin"/> 
    </stepAssemblies>` 

,但我的服務器上顯示此錯誤:

System.IO.FileNotFoundException : Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system cannot find the file specified. 

OFC,如果我約傾城.tpl文件的信息刪除它的工作原理,但我的報告沒有創建。你知道如何使用它嗎?

乾杯,

回答

0

它不是關於傾城,這是有關.NET 2.0標準的支持。請確保您的Jenkins代理能夠構建.net std 2.0項目。

相關問題