-
Notifications
You must be signed in to change notification settings - Fork 4
/
linker.xml
28 lines (26 loc) · 1.3 KB
/
linker.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8" ?>
<linker>
<!-- Our application -->
<assembly fullname="WebFsc.Client"></assembly>
<!-- Assemblies needed by FCS or that we want referenced, but illink would otherwise remove -->
<assembly fullname="FSharp.Data"></assembly>
<assembly fullname="FSharp.Data.DesignTime"></assembly>
<assembly fullname="netstandard"></assembly>
<assembly fullname="System.Collections"></assembly>
<assembly fullname="System.Console"></assembly>
<assembly fullname="System.Globalization"></assembly>
<assembly fullname="System.IO"></assembly>
<assembly fullname="System.Linq.Expressions"></assembly>
<assembly fullname="System.Net.Http"></assembly>
<assembly fullname="System.Reflection"></assembly>
<assembly fullname="System.Runtime"></assembly>
<assembly fullname="System.Runtime.Extensions"></assembly>
<assembly fullname="System.Threading.Tasks"></assembly>
<assembly fullname="System.Xml.Linq"></assembly>
<!-- Copy from microsoft.aspnetcore.blazor.build's BuiltInBclLinkerDescriptor.xml -->
<assembly fullname="mscorlib">
<!-- Preserve all methods on WasmRuntime, because these are called by JS-side code
to implement timers. Fixes https://github.com/aspnet/Blazor/issues/239 -->
<type fullname="System.Threading.WasmRuntime" />
</assembly>
</linker>