-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.fsproj
34 lines (30 loc) · 1.32 KB
/
build.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="Helpers.fs" />
<Compile Include="MessagePrompts.fs" />
<Compile Include="ProjectInfo.fs" />
<Compile Include="ReleaseNotesTasks.fs" />
<Compile Include="BasicTasks.fs" />
<Compile Include="TestTasks.fs" />
<Compile Include="PackageTasks.fs" />
<Compile Include="DocumentationTasks.fs" />
<Compile Include="ReleaseTasks.fs" />
<Compile Include="Build.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BlackFox.Fake.BuildTask" Version="0.1.3" />
<PackageReference Include="Fake.Api.Github" Version="5.23.1" />
<PackageReference Include="Fake.Core.Process" Version="5.23.1" />
<PackageReference Include="Fake.Core.ReleaseNotes" Version="5.23.1" />
<PackageReference Include="Fake.Core.Target" Version="5.23.1" />
<PackageReference Include="Fake.DotNet.Cli" Version="5.23.1" />
<PackageReference Include="Fake.DotNet.MSBuild" Version="5.23.1" />
<PackageReference Include="Fake.IO.FileSystem" Version="5.23.1" />
<PackageReference Include="Fake.Tools.Git" Version="5.23.1" />
<PackageReference Include="Fake.Extensions.Release" Version="0.3.1" />
</ItemGroup>
</Project>