Skip to content

Commit

Permalink
Embedded license in csproj (for nuget)
Browse files Browse the repository at this point in the history
  • Loading branch information
bawkee committed Oct 3, 2024
1 parent 4b52d69 commit c35f2b0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions Source/SqlBinder/SqlBinder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Bojan Sala</Authors>
<PackageLicenseUrl>https://raw.githubusercontent.com/bawkee/SqlBinder/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/bawkee/SqlBinder</PackageProjectUrl>
<Description>Free, open-source library that helps you transform a given SQL template and a set of conditions into any number of valid SQL statements along with their associated parameters.</Description>
<Copyright>Copyright © Bojan Sala</Copyright>
Expand All @@ -18,6 +17,7 @@
<PackageIcon>Clippy.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Fixed a bug where static parser cache wasn't thread safe</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down Expand Up @@ -81,14 +81,18 @@
</ItemGroup>

<ItemGroup>
<None Include="..\..\Clippy.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<None Include="..\..\Clippy.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit c35f2b0

Please sign in to comment.