This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreview-demo.fsproj
41 lines (36 loc) · 1.76 KB
/
preview-demo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>preview_demo</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\cfg\plugin.fs" />
<Compile Include="src\cfg\database.fs" />
<Compile Include="src\cfg\logging.fs" />
<Compile Include="src\cfg\cfg.fs" />
<Compile Include="src\host\worker.fs" />
<Compile Include="src\host\host.fs" />
<Compile Include="src\main.fs" />
<ContentWithTargetPath Include="plugin/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>plugin/%(RecursiveDir)/%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="config/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>config/%(RecursiveDir)/%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Update="FSharp.Core" Version="7.0.300" />
<PackageReference Include="NReco.Logging.File" Version="1.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\pilipala-kernel\pilipala-kernel.fsproj" />
<ProjectReference Include="..\pilipala-sdk\pilipala-frame\pilipala-frame.fsproj" />
<ProjectReference Include="..\pilipala-sdk\pilipala.data.db-ext\pilipala.data.db-ext.fsproj" />
<ProjectReference Include="..\pilipala-sdk\pilipala.util\pilipala.util.fsproj" />
</ItemGroup>
</Project>