Skip to content

Commit

Permalink
Updated to use ExtCore 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sikorsky committed Jan 3, 2019
1 parent cc4eb4e commit b9b9d32
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 24 deletions.
28 changes: 14 additions & 14 deletions README.md
@@ -1,4 +1,4 @@
# ExtCore Framework 4.0.0-alpha2 Sample Web Application That Uses File Storage
# ExtCore Framework 4.0.0 Sample Web Application That Uses File Storage

[![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)

Expand Down Expand Up @@ -28,19 +28,19 @@ through the abstraction layer and easily replace, let's say, file system storage

### Other Samples

* [Full-featured ExtCore 3.3.0 framework sample web application](https://github.com/ExtCore/ExtCore-Sample);
* [ExtCore framework 3.3.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
* [ExtCore framework 3.3.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
* [ExtCore framework 3.3.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
* [ExtCore framework 3.3.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
* [ExtCore framework 3.3.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
* [ExtCore framework 3.3.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
* [ExtCore framework 3.3.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
* [ExtCore framework 3.3.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
* [ExtCore framework 3.3.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
* [ExtCore framework 3.3.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).

You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-3.3.0.zip).
* [Full-featured ExtCore 4.0.0 framework sample web application](https://github.com/ExtCore/ExtCore-Sample);
* [ExtCore framework 4.0.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
* [ExtCore framework 4.0.0 sample MVC web application](https://github.com/ExtCore/ExtCore-Sample-Mvc);
* [ExtCore framework 4.0.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
* [ExtCore framework 4.0.0 sample web application that uses Identity](https://github.com/ExtCore/ExtCore-Sample-Identity);
* [ExtCore framework 4.0.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
* [ExtCore framework 4.0.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
* [ExtCore framework 4.0.0 advanced sample accounting web application](https://github.com/ExtCore/ExtCore-Sample-Accounting);
* [ExtCore framework 4.0.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
* [ExtCore framework 4.0.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
* [ExtCore framework 4.0.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).

You can also download our [ready to use full-featured sample](http://extcore.net/files/ExtCore-Sample-4.0.0.zip).
It contains everything you need to run ExtCore-based web application from Visual Studio 2017, including SQLite
database with the test data.

Expand Down
4 changes: 2 additions & 2 deletions src/Extension/Extension.csproj
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ExtCore.FileStorage.Abstractions" Version="4.0.0-alpha2" />
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="4.0.0-alpha2" />
<PackageReference Include="ExtCore.FileStorage.Abstractions" Version="4.0.0" />
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="4.0.0" />
</ItemGroup>

</Project>
11 changes: 6 additions & 5 deletions src/WebApplication/WebApplication.csproj
Expand Up @@ -2,14 +2,15 @@

<PropertyGroup>
<Authors>Dmitry Sikorsky</Authors>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ExtCore.FileStorage" Version="4.0.0-alpha2" />
<PackageReference Include="ExtCore.FileStorage.FileSystem" Version="4.0.0-alpha2" />
<PackageReference Include="ExtCore.Mvc" Version="4.0.0-alpha2" />
<PackageReference Include="ExtCore.WebApplication" Version="4.0.0-alpha2" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
<PackageReference Include="ExtCore.FileStorage" Version="4.0.0" />
<PackageReference Include="ExtCore.FileStorage.FileSystem" Version="4.0.0" />
<PackageReference Include="ExtCore.Mvc" Version="4.0.0" />
<PackageReference Include="ExtCore.WebApplication" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 5 additions & 3 deletions src/WebApplication/web.config
Expand Up @@ -2,8 +2,10 @@
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
<environmentVariables />
</aspNetCore>
</system.webServer>
</configuration>
</configuration>

0 comments on commit b9b9d32

Please sign in to comment.