forked from fable-compiler/fable-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowser.Dom.fsproj
More file actions
32 lines (32 loc) · 1.2 KB
/
Browser.Dom.fsproj
File metadata and controls
32 lines (32 loc) · 1.2 KB
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
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Fable.Browser.Dom</PackageId>
<Version>2.14.0</Version>
<PackageVersion>2.14.0</PackageVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Tags>fable;fable-binding;fable-javascript</Tags>
</PropertyGroup>
<ItemGroup>
<Compile Include="Browser.DomException.fs" />
<Compile Include="Browser.File.fs" />
<Compile Include="Browser.History.fs" />
<Compile Include="Browser.Dom.fs" />
<Compile Include="Browser.Dom.Ext.fs" />
<Compile Include="Browser.Dom.Api.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Core" Version="3.2.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Event\Browser.Event.fsproj" />
<ProjectReference Include="..\WebStorage\Browser.WebStorage.fsproj" />
<ProjectReference Include="..\Blob\Browser.Blob.fsproj" />
</ItemGroup>
<!-- This package doesn't contain actual code
so we don't need to add the sources -->
<!-- <ItemGroup>
<Content Include="*.fsproj; *.fs" PackagePath="fable\" />
</ItemGroup> -->
</Project>