Skip to content

Commit 70be865

Browse files
authored
Add readme to Nuget package and update SDK version (#209)
* add readme * update intro text * fix package path * remove package parh * remove snupkg * upgrade sdk version to enable readme packing * correct the .net version
1 parent 12a53bf commit 70be865

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

docs/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# SQL binding extension for Azure Functions
2+
3+
Azure SQL bindings for Azure Functions adds input and output bindings for Azure SQL and SQL Server products.
4+
- **Input Binding**: takes a SQL query to run and returns the output of the query in the function.
5+
- **Output Binding**: takes a list of rows and upserts them into the user table (i.e. If a row doesn't already exist, it is added. If it does, it is updated).
6+
7+
Get started quickly with the samples available in our [repository](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples)
8+
9+
Further information on the Azure SQL binding for Azure Functions is also available in the [Azure Functions docs](https://docs.microsoft.com/azure/azure-functions/functions-bindings-azure-sql).
10+
11+
Find latest updates at [Release notes](https://github.com/Azure/azure-functions-sql-extension/releases/latest)

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "5.0.403"
3+
"version": "6.0.102"
44
}
55
}

src/Microsoft.Azure.WebJobs.Extensions.Sql.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1919
<PackageProjectUrl>https://github.com/Azure/azure-functions-sql-extension</PackageProjectUrl>
20+
<PackageReadmeFile>README.md</PackageReadmeFile>
2021
<PackageIcon>pkgicon.png</PackageIcon>
2122
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2223
<EmbedUntrackedSources>true</EmbedUntrackedSources>
@@ -45,6 +46,7 @@
4546
</Reference>
4647
<None Include="pkgicon.png" Pack="true" PackagePath="" />
4748
<None Include="..\lib\Microsoft.SqlServer.TransactSql.ScriptDom.dll" Pack="true" PackagePath="lib/$(TargetFramework)" />
49+
<None Include="..\docs\README.md" Pack="true" PackagePath=""/>
4850
</ItemGroup>
4951

5052
</Project>

0 commit comments

Comments
 (0)