Skip to content

Commit e546624

Browse files
committed
Completed paket integration. Bumped all dependencies. Made compilation and tests work.
1 parent 4419fa3 commit e546624

36 files changed

+463
-392
lines changed

.nuget/NuGet.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.nuget/NuGet.exe

-4.07 MB
Binary file not shown.

.nuget/NuGet.targets

Lines changed: 0 additions & 153 deletions
This file was deleted.

.vscode/cSpell.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// cSpell Settings
2+
{
3+
// Version of the setting file. Always 0.1
4+
"version": "0.1",
5+
// language - current active spelling language
6+
"language": "en",
7+
// words - list of words to be always considered correct
8+
"words": [
9+
"Projac"
10+
],
11+
// flagWords - list of words to be always considered incorrect
12+
// This is useful for offensive words and common spelling errors.
13+
// For example "hte" should be "the"
14+
"flagWords": [
15+
"hte"
16+
]
17+
}

build/Paramol.SQLite.nuspec

Lines changed: 0 additions & 30 deletions
This file was deleted.

build/Paramol.nuspec

Lines changed: 0 additions & 26 deletions
This file was deleted.

build/Projac.Connector.nuspec

Lines changed: 0 additions & 25 deletions
This file was deleted.

build/Projac.SQLite.nuspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>Projac.SQLite</id>
5+
<version>0.0.0</version>
6+
<authors>Yves Reynhout</authors>
7+
<owners>Yves Reynhout</owners>
8+
<title>Projac.SQLite</title>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<licenseUrl>https://raw.github.com/yreynhout/Projac/master/LICENSE.txt</licenseUrl>
11+
<description>Projac.SQLite provides lightweight infrastructure for producing SQL DML statements against SQLite.</description>
12+
<projectUrl>https://github.com/yreynhout/Projac</projectUrl>
13+
<releaseNotes>Reorganization.</releaseNotes>
14+
<copyright>Copyright 2017, BitTacklr. All rights reserved.</copyright>
15+
<tags>eventsourcing DDDesign</tags>
16+
<dependencies>
17+
<group targetFramework="net46">
18+
<dependency id="Projac" version="0.0.147" />
19+
<dependency id="System.Data.SQLite.Core" version="1.0.99.0" />
20+
</group>
21+
</dependencies>
22+
</metadata>
23+
<files>
24+
<file src="output\csharp\Projac.SQLite.dll" target="lib\net46\Projac.SQLite.dll" />
25+
<file src="output\csharp\Projac.SQLite.pdb" target="lib\net46\Projac.SQLite.pdb" />
26+
<file src="output\csharp\Projac.SQLite.xml" target="lib\net46\Projac.SQLite.xml" />
27+
<file src="..\src\Projac.SQLite\*.cs" target="src\Projac.SQLite" />
28+
<file src="..\src\Projac.SQLite\Properties\*.cs" target="src\Projac.SQLite\Properties" />
29+
</files>
30+
</package>

build/Projac.SqlClient.nuspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>Projac.SqlClient</id>
5+
<version>0.0.0</version>
6+
<authors>Yves Reynhout</authors>
7+
<owners>Yves Reynhout</owners>
8+
<title>Projac.SqlClient</title>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<licenseUrl>https://raw.github.com/yreynhout/Projac/master/LICENSE.txt</licenseUrl>
11+
<description>Projac.SQLite provides lightweight infrastructure for producing SQL DML statements against Microsoft SQL Server (TM).</description>
12+
<projectUrl>https://github.com/yreynhout/Projac</projectUrl>
13+
<releaseNotes>Reorganization.</releaseNotes>
14+
<copyright>Copyright 2017, BitTacklr. All rights reserved.</copyright>
15+
<tags>eventsourcing DDDesign</tags>
16+
<dependencies>
17+
<group targetFramework="net46">
18+
<dependency id="Projac" version="0.0.147" />
19+
<dependency id="System.Data.SQLite.Core" version="1.0.99.0" />
20+
</group>
21+
</dependencies>
22+
</metadata>
23+
<files>
24+
<file src="output\csharp\Projac.SqlClient.dll" target="lib\net46\Projac.SqlClient.dll" />
25+
<file src="output\csharp\Projac.SqlClient.pdb" target="lib\net46\Projac.SqlClient.pdb" />
26+
<file src="output\csharp\Projac.SqlClient.xml" target="lib\net46\Projac.SqlClient.xml" />
27+
<file src="..\src\Projac.SqlClient\*.cs" target="src\Projac.SqlClient" />
28+
<file src="..\src\Projac.SqlClient\Properties\*.cs" target="src\Projac.SqlClient\Properties" />
29+
</files>
30+
</package>

build/Projac.nuspec

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,14 @@
1010
<licenseUrl>https://raw.github.com/yreynhout/Projac/master/LICENSE.txt</licenseUrl>
1111
<description>Projac provides lightweight infrastructure for producing SQL based projections.</description>
1212
<projectUrl>https://github.com/yreynhout/Projac</projectUrl>
13-
<releaseNotes>Added SQLite support. Replaced TSql with SqlClientSyntax.</releaseNotes>
14-
<copyright>Copyright 2015, BitTacklr. All rights reserved.</copyright>
13+
<releaseNotes>Reorganization.</releaseNotes>
14+
<copyright>Copyright 2017, BitTacklr. All rights reserved.</copyright>
1515
<tags>eventsourcing DDDesign</tags>
16-
<dependencies>
17-
<group targetFramework="net45">
18-
<dependency id="Paramol" version="0.0.147" />
19-
</group>
20-
</dependencies>
2116
</metadata>
2217
<files>
23-
<file src="output\csharp\Projac.dll" target="lib\net45\Projac.dll" />
24-
<file src="output\csharp\Projac.pdb" target="lib\net45\Projac.pdb" />
25-
<file src="output\csharp\Projac.xml" target="lib\net45\Projac.xml" />
18+
<file src="output\csharp\Projac.dll" target="lib\net46\Projac.dll" />
19+
<file src="output\csharp\Projac.pdb" target="lib\net46\Projac.pdb" />
20+
<file src="output\csharp\Projac.xml" target="lib\net46\Projac.xml" />
2621
<file src="..\src\Projac\*.cs" target="src\Projac" />
2722
<file src="..\src\Projac\Properties\*.cs" target="src\Projac\Properties" />
2823
</files>

0 commit comments

Comments
 (0)