Skip to content

Commit 03be142

Browse files
committed
Add more info
1 parent 7eeb353 commit 03be142

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SQL Bulk Copy & Merge
22

3-
This .NET library makes easier specific workflows that copy table data between SQL Server databases.
3+
This .NET library simplifies some common workflows that copy table data between SQL Server databases.
44

55
SQLBulkCopy is useful to copy between databases, but truncating the destination table each time before copying is not always possible or efficient.
66
An alternative workflow is to use SQLBulkCopy to copy to a temporary table and then run SQL MERGE between the temporary table and target.

SqlBulkCopyMerge.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{0D15811D-B
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DE7E6138-BA06-4B5A-81CB-7332190C1AAC}"
1515
ProjectSection(SolutionItems) = preProject
16-
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
1716
README.md = README.md
1817
EndProjectSection
1918
EndProject

src/SqlBulkCopyMerge/SqlBulkCopyMerge.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
<Authors>Steve Kirkegard</Authors>
55
<Product>SqlBulkCopyMerge</Product>
66
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
7-
<Description>This .NET library makes easier specific workflows that copy table data between SQL Server databases.</Description>
7+
<Description>Simplifies some common workflows that copy table data between SQL Server databases.</Description>
8+
<PackageProjectUrl>https://github.com/stevekirks/sql-bulk-copy-merge</PackageProjectUrl>
9+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
810
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
911
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1012
</PropertyGroup>

0 commit comments

Comments
 (0)