Skip to content

Commit 26dbdb9

Browse files
authored
src/framework: Build FinallyDelegate (mono#21)
The class FinallyDelegate was added in changeset 88c3edc This patch ensures that the class will be built with MSBuild under NUnitLite, for frameworks 2.0, 3.5, 4.0, and 4.5
1 parent 7e48974 commit 26dbdb9

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

NUnitLite-1.0.0/src/framework/nunitlite-2.0.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@
247247
<Compile Include="Extensibility\ISuiteBuilder.cs" />
248248
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
249249
<Compile Include="Extensibility\ITestCaseProvider.cs" />
250+
<Compile Include="FinallyDelegate.cs" />
250251
<Compile Include="GlobalSettings.cs" />
251252
<Compile Include="Guard.cs" />
252253
<Compile Include="Has.cs" />
@@ -379,4 +380,4 @@
379380
<Target Name="AfterBuild">
380381
</Target>
381382
-->
382-
</Project>
383+
</Project>

NUnitLite-1.0.0/src/framework/nunitlite-3.5.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@
230230
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
231231
<Compile Include="Extensibility\ITestCaseProvider.cs" />
232232
<Compile Include="GlobalSettings.cs" />
233+
<Compile Include="FinallyDelegate.cs" />
233234
<Compile Include="Guard.cs" />
234235
<Compile Include="Has.cs" />
235236
<Compile Include="IExpectException.cs" />
@@ -366,4 +367,4 @@
366367
<Target Name="AfterBuild">
367368
</Target>
368369
-->
369-
</Project>
370+
</Project>

NUnitLite-1.0.0/src/framework/nunitlite-4.0.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@
230230
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
231231
<Compile Include="Extensibility\ITestCaseProvider.cs" />
232232
<Compile Include="GlobalSettings.cs" />
233+
<Compile Include="FinallyDelegate.cs" />
233234
<Compile Include="Guard.cs" />
234235
<Compile Include="Has.cs" />
235236
<Compile Include="IExpectException.cs" />
@@ -365,4 +366,4 @@
365366
<Target Name="AfterBuild">
366367
</Target>
367368
-->
368-
</Project>
369+
</Project>

NUnitLite-1.0.0/src/framework/nunitlite-4.5.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@
231231
<Compile Include="Extensibility\ISuiteBuilder.cs" />
232232
<Compile Include="Extensibility\ITestCaseBuilder.cs" />
233233
<Compile Include="Extensibility\ITestCaseProvider.cs" />
234+
<Compile Include="FinallyDelegate.cs" />
234235
<Compile Include="GlobalSettings.cs" />
235236
<Compile Include="Guard.cs" />
236237
<Compile Include="Has.cs" />
@@ -369,4 +370,4 @@
369370
<Target Name="AfterBuild">
370371
</Target>
371372
-->
372-
</Project>
373+
</Project>

0 commit comments

Comments
 (0)