File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ protected FSharpAcceptanceTestAssembly(string basePath)
15
15
protected override IEnumerable < string > GetStandardReferences ( )
16
16
{
17
17
var homeDir = Environment . GetFolderPath ( Environment . SpecialFolder . UserProfile ) ;
18
- var fxDir = $@ "{ homeDir } \.nuget\packages\microsoft.netframework.referenceassemblies.net452\1.0.2\build\.NETFramework\v4.5.2\";
18
+ // If you update this path, make sure to update the PackageDownload in test.utility.csproj as well
19
+ var fxDir = $@ "{ homeDir } \.nuget\packages\microsoft.netframework.referenceassemblies.net452\1.0.3\build\.NETFramework\v4.5.2\";
19
20
var mscorlib = $@ "{ fxDir } mscorlib.dll";
20
21
var sysRuntime = $@ "{ fxDir } Facades\System.Runtime.dll";
21
22
22
23
return new [ ] { mscorlib , sysRuntime , "xunit.abstractions.dll" } ;
23
24
}
24
25
25
-
26
26
protected override void Compile ( string code , string [ ] references )
27
27
{
28
28
var sourcePath = Path . GetTempFileName ( ) + ".fs" ;
Original file line number Diff line number Diff line change 23
23
<PackageReference Include =" System.ComponentModel.TypeConverter" Version =" 4.3.0" />
24
24
</ItemGroup >
25
25
26
+ <ItemGroup >
27
+ <!-- Needed by FSharpAcceptanceTestAssembly -->
28
+ <PackageDownload Include =" Microsoft.NETFramework.ReferenceAssemblies.net452" Version =" [1.0.3]" />
29
+ </ItemGroup >
30
+
26
31
<ItemGroup >
27
32
<ProjectReference Include =" ..\..\src\xunit.assert\xunit.assert.csproj" />
28
33
<ProjectReference Include =" ..\..\src\xunit.execution\xunit.execution.csproj" />
You can’t perform that action at this time.
0 commit comments