Skip to content

Commit e10c9b7

Browse files
author
Dmitry Sikorsky
committed
Updated to use ExtCore 1.1.1
1 parent bcab027 commit e10c9b7

File tree

9 files changed

+57
-103
lines changed

9 files changed

+57
-103
lines changed

WebApplication.sln

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2FE680E8-878C-4FF3-80FC-4241411518C6}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1497ED1E-2086-49D8-85D3-762E828141FE}"
9-
ProjectSection(SolutionItems) = preProject
10-
global.json = global.json
11-
EndProjectSection
129
EndProject
13-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "WebApplication", "src\WebApplication\WebApplication.xproj", "{73D1DF82-3328-4862-9B50-65A7B13589F2}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApplication", "src\WebApplication\WebApplication.csproj", "{73D1DF82-3328-4862-9B50-65A7B13589F2}"
1411
EndProject
15-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Extension", "src\Extension\Extension.xproj", "{A0DCD8BA-F8C0-454A-B081-0EF2BCE9ACFB}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Extension", "src\Extension\Extension.csproj", "{A0DCD8BA-F8C0-454A-B081-0EF2BCE9ACFB}"
1613
EndProject
1714
Global
1815
GlobalSection(SolutionConfigurationPlatforms) = preSolution

global.json

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

src/Extension/Extension.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Authors>Dmitry Sikorsky</Authors>
5+
<TargetFramework>netstandard1.6</TargetFramework>
6+
<AssemblyName>Extension</AssemblyName>
7+
<PackageId>Extension</PackageId>
8+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
9+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
10+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<EmbeddedResource Include="Styles\**;Views\**" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<PackageReference Include="ExtCore.Mvc.Infrastructure" Version="1.1.1" />
19+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
20+
</ItemGroup>
21+
22+
</Project>

src/Extension/Extension.xproj

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

src/Extension/project.json

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<Authors>Dmitry Sikorsky</Authors>
5+
<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>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<None Update="Views">
15+
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
16+
</None>
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<PackageReference Include="ExtCore.Mvc" Version="1.1.1" />
21+
<PackageReference Include="ExtCore.WebApplication" Version="1.1.1" />
22+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
23+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
24+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
25+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
26+
</ItemGroup>
27+
28+
</Project>

src/WebApplication/WebApplication.xproj

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

src/WebApplication/project.json

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"gcServer": true
3+
}

0 commit comments

Comments
 (0)