Skip to content

Commit 0cf21af

Browse files
committed
Add nuget ref
1 parent cf1c4dc commit 0cf21af

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/FsSpectre/FsSpectre.fsproj

+24
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,34 @@
22
<PropertyGroup>
33
<TargetFramework>net6.0</TargetFramework>
44
<GenerateDocumentationFile>true</GenerateDocumentationFile>
5+
6+
<Title>Spectre.Console with with F# style.</Title>
7+
<Description>FsSpectre is a small library that extends Spectre.Console and allow to write beautiful console applications in a declarative and more F#-friendly way.</Description>
8+
9+
<!-- NuGet config -->
10+
<PackageId>FsSpectre</PackageId>
11+
<Version>0.1.0</Version>
12+
<Authors>Enrico Galassi</Authors>
13+
<PackageTags>fsharp;cli;dotnet;console-application;fsharp-console;</PackageTags>
14+
<PackageProjectUrl>https://github.com/galassie/fs-spectre</PackageProjectUrl>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
17+
<!-- <PackageIcon>icon.png</PackageIcon> -->
18+
<PackageReadmeFile>README.md</PackageReadmeFile>
19+
<RepositoryType>git</RepositoryType>
20+
<RepositoryUrl>https://github.com/galassie/fs-spectre</RepositoryUrl>
21+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
522
</PropertyGroup>
23+
624
<ItemGroup>
725
<PackageReference Include="Spectre.Console" Version="0.46.0" />
826
</ItemGroup>
27+
28+
<ItemGroup>
29+
<None Include="../../assets/Showcase.png" Pack="true" PackagePath="/assets"/>
30+
<None Include="../../README.md" Pack="true" PackagePath="/"/>
31+
</ItemGroup>
32+
933
<ItemGroup>
1034
<Compile Include="ColorBox.fs" />
1135
<Compile Include="TextBuilder.fs" />

0 commit comments

Comments
 (0)