File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 1.2.1
2
+ * Support for net6.0 version 6.0.1
3
+
1
4
# 1.1.0
2
5
* Support for net 6.0
3
6
Original file line number Diff line number Diff line change @@ -40,7 +40,13 @@ let compile (path: string) (asmPath: string) =
40
40
let net50Path =
41
41
let runtimeDir = System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()
42
42
#if NET6_ 0
43
- IO.Path.GetFullPath( runtimeDir </> " ../../../packs/Microsoft.NETCore.App.Ref/6.0.0/ref/net6.0/" )
43
+
44
+ let packDir =
45
+ IO.Directory.GetDirectories( runtimeDir </> " ../../../packs/Microsoft.NETCore.App.Ref/" , " 6.0.*" )
46
+ |> Seq.max
47
+ IO.Path.GetFullPath( packDir </> " ref/net6.0" )
48
+
49
+ //IO.Path.GetFullPath(runtimeDir </> "../../../packs/Microsoft.NETCore.App.Ref/6.0.0/ref/net6.0/")
44
50
#else
45
51
IO.Path.GetFullPath( runtimeDir </> " ../../../packs/Microsoft.NETCore.App.Ref/5.0.0/ref/net5.0/" )
46
52
#endif
Original file line number Diff line number Diff line change 17
17
<PackageProjectUrl >https://github.com/d-edge/fasmi</PackageProjectUrl >
18
18
<RepositoryUrl >https://github.com/d-edge/fasmi</RepositoryUrl >
19
19
<PackageLicenseFile >LICENSE</PackageLicenseFile >
20
- <Version >1.2.0 </Version >
20
+ <Version >1.2.1 </Version >
21
21
</PropertyGroup >
22
22
<ItemGroup >
23
23
<Compile Include =" FileSystem.fs" />
You can’t perform that action at this time.
0 commit comments