2017-12-18 299 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项目。

相关问题