Skip to content

Commit 7476a4b

Browse files
committed
Fixed paths to nunit.framework.dll
Make sure we're using the NuGet one instead of the GAC since the latter one is deprecated as of Mono 4.9.
1 parent 769f944 commit 7476a4b

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/Java.Interop.Dynamic/Tests/Java.Interop.Dynamic-Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<ItemGroup>
3838
<Reference Include="System" />
3939
<Reference Include="nunit.framework">
40-
<HintPath>..\..\..\lib\NUnit-2.6.3\bin\nunit.framework.dll</HintPath>
40+
<HintPath>..\..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
4141
</Reference>
4242
<Reference Include="Microsoft.CSharp" />
4343
</ItemGroup>

src/Xamarin.Android.Tools.ApiXmlAdjuster/Tests/Xamarin.Android.Tools.ApiXmlAdjuster-Tests.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
<ItemGroup>
3232
<Reference Include="System" />
3333
<Reference Include="nunit.framework">
34-
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
35-
<Package>nunit</Package>
34+
<HintPath>..\..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
3635
</Reference>
3736
<Reference Include="System.Xml" />
3837
</ItemGroup>
@@ -54,4 +53,4 @@
5453
</ProjectReference>
5554
</ItemGroup>
5655
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
57-
</Project>
56+
</Project>

tests/Java.Interop-PerformanceTests/Java.Interop-PerformanceTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<ItemGroup>
3535
<Reference Include="System" />
3636
<Reference Include="nunit.framework">
37-
<HintPath>..\..\lib\NUnit-2.6.3\bin\nunit.framework.dll</HintPath>
37+
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
3838
</Reference>
3939
</ItemGroup>
4040
<ItemGroup>
@@ -62,4 +62,4 @@
6262
<Name>TestJVM</Name>
6363
</ProjectReference>
6464
</ItemGroup>
65-
</Project>
65+
</Project>

tests/TestJVM/TestJVM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<ItemGroup>
3939
<Reference Include="System" />
4040
<Reference Include="nunit.framework">
41-
<HintPath>..\..\..\lib\NUnit-2.6.3\bin\nunit.framework.dll</HintPath>
41+
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
4242
</Reference>
4343
</ItemGroup>
4444
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

tools/generator/Tests/generator-Tests.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@
3535
<Reference Include="System" />
3636
<Reference Include="System.Xml" />
3737
<Reference Include="nunit.framework">
38-
<HintPath>..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
39-
<Package>nunit</Package>
38+
<HintPath>..\..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
4039
</Reference>
4140
</ItemGroup>
4241
<ItemGroup>

tools/logcat-parse/Tests/LogcatParse-Tests.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<Reference Include="System" />
34-
<Reference Include="nunit.framework" />
34+
<Reference Include="nunit.framework">
35+
<HintPath>..\..\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
36+
</Reference>
3537
</ItemGroup>
3638
<ItemGroup>
3739
<Compile Include="GrefsTest.cs" />

0 commit comments

Comments
 (0)