-
Notifications
You must be signed in to change notification settings - Fork 0
/
PomodoroSharp.fsproj
56 lines (49 loc) · 1.98 KB
/
PomodoroSharp.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
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>
<!-- General -->
<Title>PomodoroSharp</Title>
<RootNamespace>PomodoroSharp</RootNamespace>
<Description>Pomodoro timer in your terminal.</Description>
<!-- Build settings -->
<TargetFramework>net6.0</TargetFramework>
<DebugType>portable</DebugType>
<OutputType>Exe</OutputType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- NuGet config -->
<PackageId>PomodoroSharp</PackageId>
<Version>0.1.0</Version>
<Authors>Enrico Galassi</Authors>
<PackageTags>fsharp;cli;dotnet;console-application;fsharp-console;tool;</PackageTags>
<PackageProjectUrl>https://github.com/galassie/pomodoro-sharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/galassie/pomodoro-sharp</RepositoryUrl>
<!-- SourceLink settings -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Tool settings -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>pomodoro-sharp</ToolCommandName>
<PackageOutputPath>./deploy</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsSpectre" Version="0.5.2" />
</ItemGroup>
<ItemGroup>
<None Include="./assets/icon.png" Pack="true" PackagePath="/" />
<None Include="./README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>