Skip to content

Commit da6a3ca

Browse files
author
Dmitry Sikorsky
committed
Updated to use ExtCore 1.2.0
1 parent 441eda8 commit da6a3ca

File tree

5 files changed

+17
-49
lines changed

5 files changed

+17
-49
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ExtCore Framework 1.1.3 Sample MVC Web Application
1+
# ExtCore Framework 1.2.0 Sample MVC 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,14 +22,16 @@ add direct dependencies to the main web application project instead, but it is n
2222

2323
### Other Samples
2424

25-
* [ExtCore framework 1.1.3 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
26-
* [ExtCore framework 1.1.3 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
27-
* [ExtCore framework 1.1.3 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
28-
* [ExtCore framework 1.1.3 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
25+
* [Full-featured ExtCore 1.2.0 framework sample web application](https://github.com/ExtCore/ExtCore-Sample);
26+
* [ExtCore framework 1.2.0 sample simplest web application](https://github.com/ExtCore/ExtCore-Sample-Simplest);
27+
* [ExtCore framework 1.2.0 sample web application that uses a database](https://github.com/ExtCore/ExtCore-Sample-Data);
28+
* [ExtCore framework 1.2.0 sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui);
29+
* [ExtCore framework 1.2.0 advanced sample web application with modular UI](https://github.com/ExtCore/ExtCore-Sample-Modular-Ui-Adv);
30+
* [ExtCore framework 1.2.0 sample web application that registers a service inside the extension](https://github.com/ExtCore/ExtCore-Sample-Service);
2931
* [ExtCore framework 1.2.0 sample web application that uses the events](https://github.com/ExtCore/ExtCore-Sample-Events);
30-
* [ExtCore framework 1.1.3 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
32+
* [ExtCore framework 1.2.0 sample API web application](https://github.com/ExtCore/ExtCore-Sample-Api).
3133

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

src/Extension/Extension.csproj

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,19 @@
33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
55
<TargetFramework>netstandard1.6</TargetFramework>
6-
<AssemblyName>Extension</AssemblyName>
7-
<PackageId>Extension</PackageId>
8-
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
9-
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
10-
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
116
</PropertyGroup>
127

138
<ItemGroup>
149
<EmbeddedResource Include="Styles\**;Views\**" />
1510
</ItemGroup>
1611

1712
<ItemGroup>
18-
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="1.1.3" />
13+
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="1.2.0" />
1914
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
2015
</ItemGroup>
2116

17+
<ItemGroup>
18+
<Folder Include="Properties\" />
19+
</ItemGroup>
20+
2221
</Project>

src/Extension/Properties/AssemblyInfo.cs

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

src/WebApplication/WebApplication.csproj

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<Authors>Dmitry Sikorsky</Authors>
55
<TargetFramework>netcoreapp1.1</TargetFramework>
6-
<PreserveCompilationContext>true</PreserveCompilationContext>
7-
<AssemblyName>WebApplication</AssemblyName>
8-
<OutputType>Exe</OutputType>
9-
<PackageId>WebApplication</PackageId>
10-
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
116
</PropertyGroup>
127

138
<ItemGroup>
14-
<None Update="Views">
15-
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
16-
</None>
17-
</ItemGroup>
18-
19-
<ItemGroup>
20-
<PackageReference Include="ExtCore.Mvc" Version="1.1.3" />
21-
<PackageReference Include="ExtCore.WebApplication" Version="1.1.3" />
9+
<PackageReference Include="ExtCore.Mvc" Version="1.2.0" />
10+
<PackageReference Include="ExtCore.WebApplication" Version="1.2.0" />
2211
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
2312
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
2413
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />

src/WebApplication/runtimeconfig.template.json

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

0 commit comments

Comments
 (0)