-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathR.SqlDebugHelper.csproj
More file actions
34 lines (29 loc) · 1.07 KB
/
Copy pathR.SqlDebugHelper.csproj
File metadata and controls
34 lines (29 loc) · 1.07 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
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>R.SqlDebugHelper</PackageId>
<Version>1.0.4</Version>
<Authors>Ronak Munjapara</Authors>
<Company>Ronak Munjapara</Company>
<Description>A helper class to generate T-SQL debug scripts from SqlParameter arrays or SqlCommand objects.</Description>
<Copyright>Copyright © 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>sql debug helper stored-procedure sqlserver visual-studio</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png">
<Pack>true</Pack>
<PackagePath></PackagePath>
</None>
<None Include="README.md">
<Pack>true</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>