-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole-application.fsproj
More file actions
38 lines (34 loc) · 1.46 KB
/
console-application.fsproj
File metadata and controls
38 lines (34 loc) · 1.46 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Library</OutputType>
<PackageId>Feather.ConsoleApplication</PackageId>
<Version>2.0.0</Version>
<Authors>FeatherTools</Authors>
<Description>The Console application eases the creation of beautiful and testable command line interfaces in F#.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/FeatherTools/console-application</PackageProjectUrl>
<RepositoryUrl>https://github.com/FeatherTools/console-application.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>fsharp;console;io;output;style</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<Compile Include="AssemblyInfo.fs" />
</ItemGroup>
<ItemGroup>
<Compile Include="src/Utils.fs" />
<Compile Include="src/Types.fs" />
<Compile Include="src/Arguments.fs" />
<Compile Include="src/Options.fs" />
<Compile Include="src/Input.fs" />
<Compile Include="src/Command.fs" />
<Compile Include="src/Progress.fs" />
<Compile Include="src/Builder.fs" />
<Compile Include="src/Render.fs" />
<Compile Include="src/ConsoleApplication.fs" />
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>