Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

A wrapper around the standard IDb classes.

[![Build status](https://ci.appveyor.com/api/projects/status/lswhc16rx6ehs0qp?svg=true)](https://ci.appveyor.com/project/mrstebo/databaseconnections)
[![Build status](https://ci.appveyor.com/api/projects/status/9qmvvyd47633cqik/branch/master?svg=true)](https://ci.appveyor.com/project/mrstebo/databaseconnections-48e8b/branch/master)
[![NuGet](https://img.shields.io/nuget/v/DatabaseConnections.svg)](https://www.nuget.org/packages/DatabaseConnections/)
[![Coverage Status](https://coveralls.io/repos/github/ekmsystems/DatabaseConnections/badge.svg)](https://coveralls.io/github/ekmsystems/DatabaseConnections)

## Database Implementations
The base implementation has wrappers around:

- `OleDbConnection`

### DatabaseConnections.OleDb [![NuGet](https://img.shields.io/nuget/v/DatabaseConnections.OleDb.svg)](https://www.nuget.org/packages/DatabaseConnections.OleDb/)
## Database Implementations

### DatabaseConnections.Postgres [![NuGet](https://img.shields.io/nuget/v/DatabaseConnections.Postgres.svg)](https://www.nuget.org/packages/DatabaseConnections.Postgres/)

Expand Down
4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ after_build:
- cmd: >-
nuget pack src\DatabaseConnections\DatabaseConnections.csproj -IncludeReferencedProjects -Build -Version "%GitVersion_NuGetVersion%" -Prop "target=%CONFIGURATION%"

nuget pack src\DatabaseConnections.OleDb\DatabaseConnections.OleDb.csproj -IncludeReferencedProjects -Build -Version "%GitVersion_NuGetVersion%" -Prop "target=%CONFIGURATION%"

nuget pack src\DatabaseConnections.Postgres\DatabaseConnections.Postgres.csproj -IncludeReferencedProjects -Build -Version "%GitVersion_NuGetVersion%" -Prop "target=%CONFIGURATION%"

nuget pack src\DatabaseConnections.SQLite\DatabaseConnections.SQLite.csproj -IncludeReferencedProjects -Build -Version "%GitVersion_NuGetVersion%" -Prop "target=%CONFIGURATION%"
Expand All @@ -48,7 +46,7 @@ test_script:
-register:user
-filter:"+[*]* -[*]*Wrapper -[*.Tests]*"
-target:"tools\NUnit.ConsoleRunner.3.6.1\tools\nunit3-console.exe"
-targetargs:"/domain:single src\DatabaseConnections.Tests\bin\$env:CONFIGURATION\DatabaseConnections.Tests.dll src\DatabaseConnections.OleDb.Tests\bin\$env:CONFIGURATION\DatabaseConnections.OleDb.Tests.dll src\DatabaseConnections.Postgres.Tests\bin\$env:CONFIGURATION\DatabaseConnections.Postgres.Tests.dll src\DatabaseConnections.SQLite.Tests\bin\$env:CONFIGURATION\DatabaseConnections.SQLite.Tests.dll"
-targetargs:"/domain:single src\DatabaseConnections.Tests\bin\$env:CONFIGURATION\DatabaseConnections.Tests.dll src\DatabaseConnections.Postgres.Tests\bin\$env:CONFIGURATION\DatabaseConnections.Postgres.Tests.dll src\DatabaseConnections.SQLite.Tests\bin\$env:CONFIGURATION\DatabaseConnections.SQLite.Tests.dll"
-output:opencoverCoverage.xml

$coveralls = (Resolve-Path "tools/coveralls.net.*/tools/csmacnz.coveralls.exe").ToString()
Expand Down

This file was deleted.

36 changes: 0 additions & 36 deletions src/DatabaseConnections.OleDb.Tests/Properties/AssemblyInfo.cs

This file was deleted.

5 changes: 0 additions & 5 deletions src/DatabaseConnections.OleDb.Tests/packages.config

This file was deleted.

59 changes: 0 additions & 59 deletions src/DatabaseConnections.OleDb/DatabaseConnections.OleDb.csproj

This file was deleted.

17 changes: 0 additions & 17 deletions src/DatabaseConnections.OleDb/DatabaseConnections.OleDb.nuspec

This file was deleted.

37 changes: 0 additions & 37 deletions src/DatabaseConnections.OleDb/Properties/AssemblyInfo.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
<Compile Include="DatabaseTests.cs" />
<Compile Include="DbParamTests.cs" />
<Compile Include="MoqExtensions.cs" />
<Compile Include="OleDb\OleDbDatabaseTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Stubs\DatabaseStub.cs" />
</ItemGroup>
Expand Down
Loading