Skip to content

Commit 2150daf

Browse files
committed
prerelease 1.1
1 parent 89c9fac commit 2150daf

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

Databasic.All.nuspec

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata minClientVersion="2.6">
44
<id>Databasic</id>
5-
<version>1.0.0.0</version>
5+
<version>1.1.0.0</version>
66
<title>Databasic</title>
77
<authors>Tom Flidr</authors>
88
<owners>Tom Flidr</owners>
@@ -12,21 +12,18 @@
1212
<language>en-US</language>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<description>
15-
Databasic - C#/VB.NET database utility
16-
- focusing on queries primarily based on pure SQL commands, no linq transations
17-
- arranging data into primitive types, typed active record classes, collections and more
18-
- allowing to run any nonselect queries
19-
This package contains references to all database provider libraries (dll).
20-
You can use this package as you wish, but if you want to use
21-
only a specific database type, install package like:
22-
- Databasic&#60;DatabaseType&#62;
15+
C#/VB.NET database utility to write pure Microsoft SQL/MySQL queries and load data into environment variables and instances.
16+
This package contains references to all database provider libraries (dll files).
17+
You can use this package as you wish, but if you want to use only a specific database type, install package like: Databasic&#60;DatabaseType&#62;
2318
</description>
2419
<copyright>Copyright © 2017</copyright>
2520
<tags>sql database select selecting query queries commands mssql tool utility</tags>
2621
<dependencies>
27-
<dependency id="Databasic" version="1.0.0.0" />
28-
<dependency id="Databasic.MsSql" version="1.0.0.0" />
29-
<dependency id="Databasic.MySql" version="1.0.0.0" />
22+
<dependency id="Databasic.Core" version="1.1.0.0" />
23+
<dependency id="Databasic.MsSql" version="1.1.0.0" />
24+
<dependency id="Databasic.MySql" version="1.1.0.0" />
25+
<dependency id="Databasic.PostgreSql" version="1.1.0.0" />
26+
<dependency id="Databasic.SQLite" version="1.1.0.0" />
3027
</dependencies>
3128
<releaseNotes>https://github.com/databasic-net/databasic/releases</releaseNotes>
3229
</metadata>

Databasic.All.vbproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,14 @@
112112
<Project>{5d0e33d9-4322-4d2d-941a-49563d249613}</Project>
113113
<Name>Databasic.MySql</Name>
114114
</ProjectReference>
115+
<ProjectReference Include="..\Databasic.PgSql\Databasic.PostgreSql.vbproj">
116+
<Project>{947da57a-6291-4038-9e95-53a36191209c}</Project>
117+
<Name>Databasic.PostgreSql</Name>
118+
</ProjectReference>
119+
<ProjectReference Include="..\Databasic.SQLite\Databasic.SQLite.vbproj">
120+
<Project>{454ed0d6-a5b9-449a-877f-99919f675c29}</Project>
121+
<Name>Databasic.SQLite</Name>
122+
</ProjectReference>
115123
<ProjectReference Include="..\Databasic\Databasic.vbproj">
116124
<Project>{063224ab-bc4c-49eb-838f-7fb115bd496c}</Project>
117125
<Name>Databasic</Name>

My Project/AssemblyInfo.vb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ only a specific database type, install package like:
2525
<Assembly: ComVisible(False)>
2626

2727
'The following GUID is for the ID of the typelib if this project is exposed to COM
28-
<Assembly: Guid("b0bbc94e-6604-4e57-8d72-753653c80577")>
28+
<Assembly: Guid("b0bbc94e-6604-4e57-8d72-753653c80577")>
2929

3030
' Version information for an assembly consists of the following four values:
3131
'
@@ -38,5 +38,5 @@ only a specific database type, install package like:
3838
' by using the '*' as shown below:
3939
' <Assembly: AssemblyVersion("1.0.*")>
4040

41-
<Assembly: AssemblyVersion("1.0.0.0")>
42-
<Assembly: AssemblyFileVersion("1.0.0.0")>
41+
<Assembly: AssemblyVersion("1.1.0.0")>
42+
<Assembly: AssemblyFileVersion("1.1.0.0")>

0 commit comments

Comments
 (0)