-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSigmaGraph.NET.fsproj
More file actions
56 lines (52 loc) · 2.43 KB
/
Copy pathSigmaGraph.NET.fsproj
File metadata and controls
56 lines (52 loc) · 2.43 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Timo Mühlhaus, fslab contributors</Authors>
<Description>A .NET interface for sigma.js graph visualisation written in F#</Description>
<Summary>A .NET interface for sigma.js graph visualisation written in F#.</Summary>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://fslab.org/SigmaGraph.NET/</PackageProjectUrl>
<!--<PackageIcon>icon.png</PackageIcon>-->
<PackageTags>sigma graph visualisation fsharp csharp dotnet</PackageTags>
<RepositoryUrl>https://github.com/fslaborg/SigmaGraph.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<FsDocsLicenseLink>https://github.com/fslaborg/SigmaGraph.NET/blob/master/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/fslaborg/SigmaGraph.NET/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<Content Include="graphology-library.min.js" copyToOutput="true">
<IncludeInPackage>true</IncludeInPackage>
</Content>
<Content Include="graphology.umd.min.js" copyToOutput="true">
<IncludeInPackage>true</IncludeInPackage>
</Content>
<Content Include="sigma.min.js" copyToOutput="true">
<IncludeInPackage>true</IncludeInPackage>
</Content>
<EmbeddedResource Include="graphology-library.min.js" />
<EmbeddedResource Include="graphology.umd.min.js" />
<EmbeddedResource Include="sigma.min.js" />
<Compile Include="Globals.fs" />
<Compile Include="InternalUtils.fs" />
<Compile Include="StyleParams.fs" />
<Compile Include="Layout.fs" />
<Compile Include="Renderer.fs" />
<Compile Include="GraphData.fs" />
<Compile Include="JsonConverter.fs" />
<Compile Include="DisplayOptions.fs" />
<Compile Include="Defaults.fs" />
<Compile Include="Sigma.fs" />
<Compile Include="Html.fs" />
<Compile Include="GraphAPI.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="DynamicObj" Version="[7.0.1, 8.0.0)" />
<PackageReference Include="Giraffe.ViewEngine.StrongName" Version="2.0.0-alpha1" />
</ItemGroup>
</Project>