Skip to content

Commit e53c6e0

Browse files
Updated to .NET 8 and ExtCore 9
1 parent 2eee26c commit e53c6e0

10 files changed

Lines changed: 32 additions & 32 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Full-Featured ExtCore Framework 7.0.0 Sample Web Application
1+
# Full-Featured ExtCore Framework 9.0.0 Sample Web Application
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

@@ -22,19 +22,19 @@ add direct dependencies to the main web application project instead, but it is n
2222

2323
### Other Samples
2424

25-
* [ExtCore framework 7.0.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
26-
* [ExtCore framework 7.0.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
27-
* [ExtCore framework 7.0.0 sample web application that uses file storage](https://github.com/ExtCore/ExtCore-Sample-FileStorage);
28-
* [ExtCore framework 7.0.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
29-
* [ExtCore framework 7.0.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
30-
* [ExtCore framework 7.0.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
31-
* [ExtCore framework 7.0.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
32-
* [ExtCore framework 7.0.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
33-
* [ExtCore framework 7.0.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
34-
* [ExtCore framework 7.0.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
35-
* [ExtCore framework 7.0.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
36-
37-
You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-7.0.0.zip).
25+
* [ExtCore framework 9.0.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
26+
* [ExtCore framework 9.0.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
27+
* [ExtCore framework 9.0.0 sample web application that uses file storage](https://github.com/ExtCore/ExtCore-Sample-FileStorage);
28+
* [ExtCore framework 9.0.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
29+
* [ExtCore framework 9.0.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
30+
* [ExtCore framework 9.0.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
31+
* [ExtCore framework 9.0.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
32+
* [ExtCore framework 9.0.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
33+
* [ExtCore framework 9.0.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
34+
* [ExtCore framework 9.0.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
35+
* [ExtCore framework 9.0.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
36+
37+
You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-9.0.0.zip).
3838
It contains everything you need to run ExtCore-based web application from Visual Studio 2022, including SQLite
3939
database with the test data.
4040

src/WebApplication.ExtensionA/Views/ExtensionA/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
}
1515
</ul>
1616
<p><a href="/extension-b">Go to Extension B</a></p>
17-
<p>* Razor runtime compilation is turned off by default starting from ASP.NET Core 3.0 and not supported by the ExtCore framework so far (7.0.0).</p>
17+
<p>* Razor runtime compilation is turned off by default starting from ASP.NET Core 3.0 and not supported by the ExtCore framework so far (9.0.0).</p>

src/WebApplication.ExtensionA/WebApplication.ExtensionA.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
77
</PropertyGroup>
88

@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="7.0.0" />
18+
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="9.0.0" />
1919
</ItemGroup>
2020

2121
</Project>

src/WebApplication.ExtensionB.Data.Abstractions/WebApplication.ExtensionB.Data.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="ExtCore.Data.Abstractions" Version="7.0.0" />
9+
<PackageReference Include="ExtCore.Data.Abstractions" Version="9.0.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/WebApplication.ExtensionB.Data.Entities/WebApplication.ExtensionB.Data.Entities.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="ExtCore.Data.Entities.Abstractions" Version="7.0.0" />
9+
<PackageReference Include="ExtCore.Data.Entities.Abstractions" Version="9.0.0" />
1010
</ItemGroup>
1111

1212
</Project>

src/WebApplication.ExtensionB.Data.EntityFramework.Sqlite/WebApplication.ExtensionB.Data.EntityFramework.Sqlite.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="ExtCore.Data.EntityFramework.Sqlite" Version="7.0.0" />
9+
<PackageReference Include="ExtCore.Data.EntityFramework.Sqlite" Version="9.0.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/WebApplication.ExtensionB/Views/ExtensionB/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
</div>
1515
<p class="from-resources">This line is red because of the rule in CSS-file added as resource (from Extension A).</p>
1616
<p>So any extension can use resources from any other extension.</p>
17-
<p>* Razor runtime compilation is turned off by default starting from ASP.NET Core 3.0 and not supported by the ExtCore framework so far (7.0.0).</p>
17+
<p>* Razor runtime compilation is turned off by default starting from ASP.NET Core 3.0 and not supported by the ExtCore framework so far (9.0.0).</p>

src/WebApplication.ExtensionB/WebApplication.ExtensionB.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="7.0.0" />
10+
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="9.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/WebApplication/WebApplication.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="ExtCore.Data" Version="7.0.0" />
10-
<PackageReference Include="ExtCore.Data.EntityFramework.Sqlite" Version="7.0.0" />
11-
<PackageReference Include="ExtCore.Mvc" Version="7.0.0" />
12-
<PackageReference Include="ExtCore.WebApplication" Version="7.0.0" />
9+
<PackageReference Include="ExtCore.Data" Version="9.0.0" />
10+
<PackageReference Include="ExtCore.Data.EntityFramework.Sqlite" Version="9.0.0" />
11+
<PackageReference Include="ExtCore.Mvc" Version="9.0.0" />
12+
<PackageReference Include="ExtCore.WebApplication" Version="9.0.0" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/WebApplication/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
gulp.task(
44
"copy-extensions", function (cb) {
5-
gulp.src(["../WebApplication.ExtensionA/bin/Debug/net6.0/WebApplication.ExtensionA.dll"]).pipe(gulp.dest("Extensions"));
6-
gulp.src(["../WebApplication.ExtensionB/bin/Debug/net6.0/WebApplication.ExtensionB.dll"]).pipe(gulp.dest("Extensions"));
5+
gulp.src(["../WebApplication.ExtensionA/bin/Debug/net8.0/WebApplication.ExtensionA.dll"]).pipe(gulp.dest("Extensions"));
6+
gulp.src(["../WebApplication.ExtensionB/bin/Debug/net8.0/WebApplication.ExtensionB.dll"]).pipe(gulp.dest("Extensions"));
77
gulp.src(["../WebApplication.ExtensionB.Data.Abstractions/bin/Debug/netstandard2.0/WebApplication.ExtensionB.Data.Abstractions.dll"]).pipe(gulp.dest("Extensions"));
8-
gulp.src(["../WebApplication.ExtensionB.Data.EntityFramework.Sqlite/bin/Debug/net6.0/WebApplication.ExtensionB.Data.EntityFramework.Sqlite.dll"]).pipe(gulp.dest("Extensions"));
8+
gulp.src(["../WebApplication.ExtensionB.Data.EntityFramework.Sqlite/bin/Debug/net8.0/WebApplication.ExtensionB.Data.EntityFramework.Sqlite.dll"]).pipe(gulp.dest("Extensions"));
99
gulp.src(["../WebApplication.ExtensionB.Data.Entities/bin/Debug/netstandard2.0/WebApplication.ExtensionB.Data.Entities.dll"]).pipe(gulp.dest("Extensions"));
1010
cb();
1111
}

0 commit comments

Comments
 (0)