|
15 | 15 | <!-- have to teachcd MSBuild where the Mono copy of the reference asssemblies is -->
|
16 | 16 | <TargetIsMono Condition="$(TargetFramework.StartsWith('net4')) and '$(OS)' == 'Unix'">true</TargetIsMono>
|
17 | 17 |
|
18 |
| - <!-- Look in the standard install locations --> |
| 18 | + <!-- Look in the standard install locations --> |
19 | 19 | <BaseFrameworkPathOverrideForMono Condition="'$(BaseFrameworkPathOverrideForMono)' == '' AND '$(TargetIsMono)' == 'true' AND EXISTS('/Library/Frameworks/Mono.framework/Versions/Current/lib/mono')">/Library/Frameworks/Mono.framework/Versions/Current/lib/mono</BaseFrameworkPathOverrideForMono>
|
20 | 20 | <BaseFrameworkPathOverrideForMono Condition="'$(BaseFrameworkPathOverrideForMono)' == '' AND '$(TargetIsMono)' == 'true' AND EXISTS('/usr/lib/mono')">/usr/lib/mono</BaseFrameworkPathOverrideForMono>
|
21 | 21 | <BaseFrameworkPathOverrideForMono Condition="'$(BaseFrameworkPathOverrideForMono)' == '' AND '$(TargetIsMono)' == 'true' AND EXISTS('/usr/local/lib/mono')">/usr/local/lib/mono</BaseFrameworkPathOverrideForMono>
|
|
41 | 41 | <ItemGroup>
|
42 | 42 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
43 | 43 | <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
| 44 | + </ItemGroup> |
| 45 | + |
| 46 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net47' "> |
| 47 | + <PackageReference Include="ZeroMQ" Version="4.1.0.31" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <ItemGroup Condition=" '$(TargetFramework)' != 'netcoreapp3.1' "> |
44 | 51 | <PackageReference Include="xunit" Version="2.8.0" />
|
45 | 52 | <PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
|
46 | 53 | <PrivateAssets>all</PrivateAssets>
|
47 | 54 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
48 | 55 | </PackageReference>
|
49 | 56 | </ItemGroup>
|
50 |
| - |
51 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'net47' "> |
52 |
| - <PackageReference Include="ZeroMQ" Version="4.1.0.31" /> |
| 57 | + |
| 58 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' "> |
| 59 | + <PackageReference Include="xunit" Version="2.4.2" /> |
| 60 | + <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"> |
| 61 | + <PrivateAssets>all</PrivateAssets> |
| 62 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 63 | + </PackageReference> |
53 | 64 | </ItemGroup>
|
54 | 65 |
|
55 | 66 | </Project>
|
0 commit comments