Skip to content

Commit f2eeedf

Browse files
committed
Updated build
1 parent b2dbc7e commit f2eeedf

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

TestStack.BDDfy.build

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,21 +95,16 @@
9595

9696
<Target Name="Test" DependsOnTargets="Build;Copy">
9797
<PropertyGroup>
98-
<NUnitHome>$(MSBuildProjectDirectory)\packages\NUnit.Runners.2.6.4\tools\</NUnitHome>
99-
<NUnitConsole>$(NUnitHome)nunit-console.exe</NUnitConsole>
98+
<XUnitHome>$(MSBuildProjectDirectory)\packages\xunit.runners.1.9.2\tools\</XUnitHome>
99+
<XUnitConsole>$(XUnitHome)xunit.console.clr4.x86.exe</XUnitConsole>
100100
</PropertyGroup>
101-
<ItemGroup>
102-
<NUnitAddinFiles Include="$(teamcity_dotnet_nunitaddin)-2.6.4.*" />
103-
</ItemGroup>
104101

105102
<Exec Command="$(MSBuildProjectDirectory)\.nuget\nuget.exe install &quot;$(MSBuildProjectDirectory)\.nuget\packages.config&quot; -o &quot;$(MSBuildProjectDirectory)\packages&quot;" />
106-
<MakeDir Directories="$(NUnitHome)addins" />
107-
<Copy SourceFiles="@(NUnitAddinFiles)" DestinationFolder="$(NUnitHome)addins" />
108-
103+
109104
<CreateItem Include="$(TestPath)\TestStack.BDDfy.Tests.dll;$(TestPath)\TestStack.BDDfy.Samples.dll">
110105
<Output ItemName="_testFiles" TaskParameter="Include"/>
111106
</CreateItem>
112-
<Exec Command="&quot;$(NUnitConsole)&quot; @(_testFiles->'&quot;%(FullPath)&quot;', ' ') /nologo /noshadow"></Exec>
107+
<Exec Command="&quot;$(XUnitConsole)&quot; @(_testFiles->'&quot;%(FullPath)&quot;', ' ') /noshadow" />
113108
</Target>
114109

115110
<Target Name="Distrib" DependsOnTargets="Clean;Build;Copy">

0 commit comments

Comments
 (0)