-
Notifications
You must be signed in to change notification settings - Fork 13
/
DbfBulkCopy.csproj
27 lines (24 loc) · 1.22 KB
/
DbfBulkCopy.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Command line application to bulk copy from DBF files to MS SqlServer</Description>
<Copyright>Copyright Chris Richards</Copyright>
<Authors>Chris Richards</Authors>
<TargetFramework>netcoreapp6</TargetFramework>
<AssemblyName>DbfBulkCopy</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>DbfBulkCopy</PackageId>
<PackageTags>dbf;dBase;xBase;Clipper;FoxPro;BulkCopy;SqlServer</PackageTags>
<PackageProjectUrl>https://github.com/yellowfeather/DbfBulkCopy</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/yellowfeather/DbfBulkCopy/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/yellowfeather/DbfBulkCopy</RepositoryUrl>
<RuntimeIdentifiers>win10-x64;osx.10.10-x64;ubuntu.14.04-x64</RuntimeIdentifiers>
<StartupObject>DbfBulkCopy.Program</StartupObject>
<Version>1.2.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="DbfDataReader" Version="0.9.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
</ItemGroup>
</Project>