-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunHelpers.fsproj
More file actions
36 lines (30 loc) · 1.04 KB
/
Copy pathRunHelpers.fsproj
File metadata and controls
36 lines (30 loc) · 1.04 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Product>NicoVIII.RunHelpers</Product>
<PackageId>NicoVIII.RunHelpers</PackageId>
<Title>RunHelpers</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Types.fs" />
<Compile Include="Builder.fs" />
<Compile Include="Shortcut.fs" />
<Compile Include="Templates/DotNet.fs" />
<Compile Include="Templates/Npm.fs" />
<Compile Include="Templates/Paket.fs" />
<Compile Include="Templates/Pnpm.fs" />
<Compile Include="Watch.fs" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="8.0.400" />
<PackageReference Include="Fake.Core.Process" Version="[6.1.4, 7.0.0)" />
</ItemGroup>
</Project>