forked from rkoeninger/PocketSql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Got lib project building nuget package
- Loading branch information
1 parent
d17cd16
commit b2941ce
Showing
3 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
.vs/ | ||
bin/ | ||
obj/ | ||
packages/ | ||
paket-files/ | ||
*.user | ||
*.suo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters