Skip to content

Commit

Permalink
Got lib project building nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoeninger committed Nov 20, 2019
1 parent d17cd16 commit b2941ce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.vs/
bin/
obj/
packages/
paket-files/
*.user
*.suo
11 changes: 11 additions & 0 deletions PocketSql.Lib/PocketSql.Lib.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>PocketSql</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>PocketSql</RootNamespace>
<Description>T-SQL interpreter fit for testing</Description>
<Copyright>Copyright © Robert Koeninger 2018-2020</Copyright>
<Authors>Robert Koeninger</Authors>
<PackageId>PocketSql</PackageId>
<Product>PocketSql</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.1.0</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SqlServer.DacFx" Version="150.4573.2" />
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/rkoeninger/PocketSql.svg?branch=master)](https://travis-ci.org/rkoeninger/PocketSql)
[![Latest Nuget](https://img.shields.io/nuget/v/PocketSql.svg)](https://www.nuget.org/packages/PocketSql)

# PocketSql

Expand Down

0 comments on commit b2941ce

Please sign in to comment.