Skip to content

Commit c11eedb

Browse files
author
Dmitry Sikorsky
committed
Changed version to 3.2.0, updated other packages
1 parent 5e5eaa4 commit c11eedb

25 files changed

Lines changed: 44 additions & 45 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ExtCore 3.1.0
1+
# ExtCore 3.2.0
22

33
[![Join the chat at https://gitter.im/ExtCore/ExtCore](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ExtCore/ExtCore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

@@ -95,19 +95,19 @@ in order to execute some code inside the ConfigureServices and Configure methods
9595

9696
Please take a look at our samples on GitHub:
9797

98-
* [Full-featured ExtCore 3.1.0 framework sample web application](https://github.com/ExtCore/ExtCore-Sample);
99-
* [ExtCore framework 3.1.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
100-
* [ExtCore framework 3.1.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
101-
* [ExtCore framework 3.1.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
102-
* [ExtCore framework 3.1.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
103-
* [ExtCore framework 3.1.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
104-
* [ExtCore framework 3.1.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
105-
* [ExtCore framework 3.1.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
106-
* [ExtCore framework 3.1.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
107-
* [ExtCore framework 3.1.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
108-
* [ExtCore framework 3.1.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
109-
110-
You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-3.1.0.zip).
98+
* [Full-featured ExtCore 3.2.0 framework sample web application](https://github.com/ExtCore/ExtCore-Sample);
99+
* [ExtCore framework 3.2.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
100+
* [ExtCore framework 3.2.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
101+
* [ExtCore framework 3.2.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
102+
* [ExtCore framework 3.2.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
103+
* [ExtCore framework 3.2.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
104+
* [ExtCore framework 3.2.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
105+
* [ExtCore framework 3.2.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
106+
* [ExtCore framework 3.2.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
107+
* [ExtCore framework 3.2.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
108+
* [ExtCore framework 3.2.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
109+
110+
You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-3.2.0.zip).
111111
It contains everything you need to run ExtCore-based web application from Visual Studio 2017, including SQLite
112112
database with the test data.
113113

src/ExtCore.Data.Abstractions/ExtCore.Data.Abstractions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2015 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Abstractions</AssemblyName>
1010
<PackageId>ExtCore.Data.Abstractions</PackageId>
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
16+
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
1717
</ItemGroup>
1818

1919
</Project>

src/ExtCore.Data.Dapper.MySql/ExtCore.Data.Dapper.MySql.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.Dapper extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Dapper.MySql</AssemblyName>
1010
<PackageId>ExtCore.Data.Dapper.MySql</PackageId>
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.9-dmr" />
16+
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.10-rc" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

src/ExtCore.Data.Dapper.PostgreSql/ExtCore.Data.Dapper.PostgreSql.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.Dapper extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Dapper.PostgreSql</AssemblyName>
1010
<PackageId>ExtCore.Data.Dapper.PostgreSql</PackageId>
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.0.0" />
16+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.0.1" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

src/ExtCore.Data.Dapper.SqlServer/ExtCore.Data.Dapper.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.Dapper extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Dapper.SqlServer</AssemblyName>
1010
<PackageId>ExtCore.Data.Dapper.SqlServer</PackageId>

src/ExtCore.Data.Dapper.Sqlite/ExtCore.Data.Dapper.Sqlite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.Dapper extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Dapper.Sqlite</AssemblyName>
1010
<PackageId>ExtCore.Data.Dapper.Sqlite</PackageId>

src/ExtCore.Data.Dapper/ExtCore.Data.Dapper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.Dapper extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Dapper</AssemblyName>
1010
<PackageId>ExtCore.Data.Dapper</PackageId>

src/ExtCore.Data.Dapper/Extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Extension : ExtensionBase
2424
/// <summary>
2525
/// Gets the version of the extension.
2626
/// </summary>
27-
public override string Version => "3.2.0-beta3";
27+
public override string Version => "3.2.0";
2828

2929
/// <summary>
3030
/// Gets the authors of the extension (separated by commas).

src/ExtCore.Data.Entities.Abstractions/ExtCore.Data.Entities.Abstractions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2015 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.Entities.Abstractions</AssemblyName>
1010
<PackageId>ExtCore.Data.Entities.Abstractions</PackageId>
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
16+
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
1717
</ItemGroup>
1818

1919
</Project>

src/ExtCore.Data.EntityFramework.MySql/ExtCore.Data.EntityFramework.MySql.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Authors>Dmitry Sikorsky</Authors>
55
<Copyright>Copyright © 2017 Dmitry Sikorsky</Copyright>
66
<Description>The ExtCore.Data.EntityFramework extension component. Based on the ExtCore framework.</Description>
7-
<VersionPrefix>3.2.0-beta3</VersionPrefix>
7+
<VersionPrefix>3.2.0</VersionPrefix>
88
<TargetFramework>netcoreapp2.0</TargetFramework>
99
<AssemblyName>ExtCore.Data.EntityFramework.MySql</AssemblyName>
1010
<PackageId>ExtCore.Data.EntityFramework.MySql</PackageId>
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.9-dmr" />
16+
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.10-rc" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

0 commit comments

Comments
 (0)