|
20 | 20 | <Optimize>false</Optimize> |
21 | 21 | <Tailcalls>false</Tailcalls> |
22 | 22 | <TargetProfileCondition=" '$(TargetFramework)' == 'portable7' or '$(TargetFramework)' == 'portable78' or '$(TargetFramework)' == 'portable259'">netcore</TargetProfile> |
23 | | -<!-- workaround for msbuild narrowing the assembly search paths when building portable libs--> |
24 | | - <AssemblySearchPathsCondition="$(TargetFramework.Contains('portable'))"> |
25 | | - {CandidateAssemblyFiles}; |
26 | | - {TargetFrameworkDirectory}; |
27 | | - {Registry:Software\Microsoft\.NETFramework,v4.5,AssemblyFoldersEx}; |
28 | | - </AssemblySearchPaths> |
29 | 23 | </PropertyGroup> |
30 | 24 | <PropertyGroup> |
31 | 25 | <DefineConstantsCondition=" '$(TargetFramework)' == 'sl5'">$(DefineConstants);SILVERLIGHT</DefineConstants> |
|
50 | 44 | </PropertyGroup> |
51 | 45 | <ItemGroup> |
52 | 46 | <!-- need full name and SpecificVersion = true in order to convince msbuild to allow this reference when targeting portable47--> |
53 | | - <ReferenceInclude="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77"Condition="'$(TargetFramework)' != 'sl5' AND '$(TargetFramework)' != 'sl3-wp'"> |
54 | | - <SpecificVersion>true</SpecificVersion> |
| 47 | + <ReferenceInclude="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77"Condition="'$(TargetFramework)' != 'sl5' AND '$(TargetFramework)' != 'sl3-wp'" > |
| 48 | + <SpecificVersion>true</SpecificVersion> |
| 49 | + <HintPath>$(FSharpSourcesRoot)\..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath> |
55 | 50 | </Reference> |
56 | 51 | <ReferenceInclude="NUnitFramework"Condition="'$(TargetFramework)' == 'sl5' OR '$(TargetFramework)' == 'sl3-wp'" /> |
57 | 52 | </ItemGroup> |
|