-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbcore.fsproj
More file actions
33 lines (29 loc) · 1.2 KB
/
dbcore.fsproj
File metadata and controls
33 lines (29 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<OtherFlags>$(OtherFlags) --warn:5</OtherFlags>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="src/Config.fs" />
<Compile Include="src/Database.fs" />
<Compile Include="src/Reader/InformationSchema.fs" />
<Compile Include="src/Reader/SQLite.fs" />
<Compile Include="src/Reader/Reader.fs" />
<Compile Include="src/Template.fs" />
<Compile Include="src/Program.fs" />
<Content Include="templates/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="3.1.5" />
<PackageReference Include="MysqlConnector" Version="0.67.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.3" />
<PackageReference Include="Scriban" Version="2.1.2" />
<PackageReference Include="YamlDotNet" Version="8.1.1" />
</ItemGroup>
</Project>