-
Notifications
You must be signed in to change notification settings - Fork 0
/
console-application.fsproj
35 lines (30 loc) · 1.05 KB
/
console-application.fsproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<PackageId>MF.ConsoleApplication</PackageId>
<Version>6.0.0</Version>
<RepositoryUrl>https://github.com/MortalFlesh/console-application</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
</ItemGroup>
<ItemGroup>
<Compile Include="src/ErrorHandling/Result.fs" />
<Compile Include="src/ErrorHandling/Option.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>