Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathPlotly.NET.Interactive.fsproj
More file actions
Latest commit
70 lines (63 loc) · 3.95 KB
/
Copy pathPlotly.NET.Interactive.fsproj
File metadata and controls
70 lines (63 loc) · 3.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8"?>
<ProjectSdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Library</OutputType>
<NoWarn>$(NoWarn);NU5100</NoWarn><!-- dll outside of lib/ folder -->
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Include PDB in the built .nupkg -->
<IncludeSymbols>true</IncludeSymbols>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup>
<Authors>Gregor Beyerle, Timo Mühlhaus, Kevin Schneider, F# open source contributors</Authors>
<Description>A .NET Interactive Kernel Extension for displaying Plotly.NET charts. </Description>
<Summary>A .NET Interactive Kernel Extension for displaying Plotly.NET charts.</Summary>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://plotly.net</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageTags>visualization charting plotly fsharp csharp</PackageTags>
<RepositoryUrl>https://github.com/plotly/Plotly.NET/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<FsDocsLicenseLink>https://github.com/plotly/Plotly.NET/blob/dev/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/plotly/Plotly.NET/blob/dev/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
</PropertyGroup>
<ItemGroup>
<CompileRemove="bin\**" />
<EmbeddedResourceRemove="bin\**" />
<NoneRemove="bin\**" />
</ItemGroup>
<ItemGroup>
<NoneInclude="RELEASE_NOTES.md" />
<CompileInclude="Formatters.fs" />
<CompileInclude="Extension.fs" />
</ItemGroup>
<ItemGroup>
<NoneInclude="..\..\docs\img\logo.png"Pack="true"PackagePath="\" />
<NoneInclude="$(OutputPath)/Plotly.NET.Interactive.dll"Pack="true"PackagePath="interactive-extensions/dotnet" />
</ItemGroup>
<ItemGroup>
<ProjectReferenceInclude="..\Plotly.NET\Plotly.NET.fsproj"PackageVersion="[6.0.0, 7.0.0)" />
<PackageReferenceInclude="Microsoft.DotNet.Interactive"Version="1.0.0-beta.26120.1" />
<PackageReferenceInclude="Microsoft.DotNet.Interactive.Formatting"Version="1.0.0-beta.26120.1" />
</ItemGroup>
<TargetName="UseExplicitPackageVersions"BeforeTargets="GenerateNuspec">
<ItemGroup>
<_ProjectReferenceWithExplicitPackageVersionInclude="@(ProjectReference->'%(FullPath)')"Condition="'%(ProjectReference.PackageVersion)' != ''" />
<_ProjectReferenceWithExactPackageVersionInclude="@(ProjectReference->'%(FullPath)')"Condition="'%(ProjectReference.ExactVersion)' == 'true'" />
<_ProjectReferenceWithReassignedVersionInclude="@(_ProjectReferencesWithVersions)"Condition="'%(Identity)' != '' And '@(_ProjectReferenceWithExplicitPackageVersion)' == '@(_ProjectReferencesWithVersions)'">
<ProjectVersion>@(_ProjectReferenceWithExplicitPackageVersion->'%(PackageVersion)')</ProjectVersion>
</_ProjectReferenceWithReassignedVersion>
<_ProjectReferenceWithReassignedVersionInclude="@(_ProjectReferencesWithVersions)"Condition="'%(Identity)' != '' And '@(_ProjectReferenceWithExactPackageVersion)' == '@(_ProjectReferencesWithVersions)'">
<ProjectVersion>[@(_ProjectReferencesWithVersions->'%(ProjectVersion)')]</ProjectVersion>
</_ProjectReferenceWithReassignedVersion>
<_ProjectReferencesWithVersionsRemove="@(_ProjectReferenceWithReassignedVersion)" />
<_ProjectReferencesWithVersionsInclude="@(_ProjectReferenceWithReassignedVersion)" />
</ItemGroup>
</Target>
</Project>