Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit afd02a5

Browse files
author
N. Taylor Mullen
committed
Addressed code review comments.
1 parent cd64805 commit afd02a5

File tree

81 files changed

+231
-669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+231
-669
lines changed

Mvc.NoFun.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
2+
# Visual Studio 2017 RC
33
VisualStudioVersion = 15.0.26123.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{DAAE4C74-D06F-4874-A166-33305D2643CE}"

Mvc.OnlyFun.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
2+
# Visual Studio 2017 RC
33
VisualStudioVersion = 15.0.26123.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{DAAE4C74-D06F-4874-A166-33305D2643CE}"

Mvc.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
2+
# Visual Studio 2017 RC
33
VisualStudioVersion = 15.0.26123.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{DAAE4C74-D06F-4874-A166-33305D2643CE}"

makefile.shade

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

samples/MvcSandbox/MvcSandbox.csproj

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,15 @@
44

55
<PropertyGroup>
66
<TargetFrameworks>net451;netcoreapp1.1</TargetFrameworks>
7-
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.23-x64;opensuse.13.2-x64</RuntimeIdentifiers>
8-
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net451' ">win7-x86</RuntimeIdentifier>
7+
<RuntimeIdentifier Condition=" '$(TargetFramework)' != 'netcoreapp1.1' ">win7-x64</RuntimeIdentifier>
98
<PreserveCompilationContext>true</PreserveCompilationContext>
109
<OutputType>Exe</OutputType>
1110
</PropertyGroup>
1211

13-
<ItemGroup>
14-
<Content Update="Views\**\*;web.config;wwwroot">
15-
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
16-
</Content>
17-
</ItemGroup>
18-
1912
<ItemGroup>
2013
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Mvc\Microsoft.AspNetCore.Mvc.csproj" />
21-
</ItemGroup>
2214

23-
<ItemGroup>
2415
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.2.0-*" />
25-
<PackageReference Include="Microsoft.AspNetCore.Razor" Version="1.2.0-*" />
26-
<PackageReference Include="Microsoft.AspNetCore.Razor.Runtime" Version="1.2.0-*" />
2716
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.2.0-*" />
2817
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.2.0-*" />
2918
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.2.0-*" />
@@ -33,7 +22,7 @@
3322
</ItemGroup>
3423

3524
<ItemGroup>
36-
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild3-final" />
25+
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.1-*" />
3726
</ItemGroup>
3827

3928
</Project>

src/Microsoft.AspNetCore.Mvc.Abstractions/Microsoft.AspNetCore.Mvc.Abstractions.csproj

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,15 @@ Microsoft.AspNetCore.Mvc.IActionResult</Description>
1414

1515
<ItemGroup>
1616
<PackageReference Include="Microsoft.AspNetCore.Routing.Abstractions" Version="1.2.0-*" />
17-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
18-
<PrivateAssets>All</PrivateAssets>
19-
</PackageReference>
20-
<PackageReference Include="Microsoft.Extensions.CopyOnWriteDictionary.Sources" Version="1.2.0-*">
21-
<PrivateAssets>All</PrivateAssets>
22-
</PackageReference>
23-
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*">
24-
<PrivateAssets>All</PrivateAssets>
25-
</PackageReference>
26-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
27-
<PrivateAssets>All</PrivateAssets>
28-
</PackageReference>
17+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
18+
<PackageReference Include="Microsoft.Extensions.CopyOnWriteDictionary.Sources" Version="1.2.0-*" PrivateAssets="All" />
19+
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*" PrivateAssets="All" />
20+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
2921
<PackageReference Include="Microsoft.Net.Http.Headers" Version="1.2.0-*" />
30-
<PackageReference Include="NETStandard.Library" Version="1.6.2-*" />
3122
</ItemGroup>
3223

3324
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
25+
<PackageReference Include="Microsoft.CSharp" Version="4.4.0-*" />
3426
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.4.0-*" />
3527
</ItemGroup>
3628

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

76
[assembly: InternalsVisibleTo("Microsoft.AspNetCore.Mvc.Abstractions.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]
8-
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]
9-
[assembly: AssemblyMetadata("Serviceable", "True")]
7+
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]

src/Microsoft.AspNetCore.Mvc.ApiExplorer/Microsoft.AspNetCore.Mvc.ApiExplorer.csproj

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,9 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Core\Microsoft.AspNetCore.Mvc.Core.csproj" />
15-
</ItemGroup>
1615

17-
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
19-
<PrivateAssets>All</PrivateAssets>
20-
</PackageReference>
21-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
22-
<PrivateAssets>All</PrivateAssets>
23-
</PackageReference>
16+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
17+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
2418
</ItemGroup>
2519

2620
</Project>

src/Microsoft.AspNetCore.Mvc.ApiExplorer/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

7-
[assembly: AssemblyMetadata("Serviceable", "True")]
86
[assembly: TypeForwardedTo(typeof(Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider))]
97
[assembly: TypeForwardedTo(typeof(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription))]
108
[assembly: TypeForwardedTo(typeof(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext))]

src/Microsoft.AspNetCore.Mvc.Core/Microsoft.AspNetCore.Mvc.Core.csproj

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,36 +20,22 @@ Microsoft.AspNetCore.Mvc.RouteAttribute</Description>
2020

2121
<ItemGroup>
2222
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Abstractions\Microsoft.AspNetCore.Mvc.Abstractions.csproj" />
23-
</ItemGroup>
2423

25-
<ItemGroup>
2624
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="1.2.0-*" />
2725
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.2.0-*" />
2826
<PackageReference Include="Microsoft.AspNetCore.Http" Version="1.2.0-*" />
2927
<PackageReference Include="Microsoft.AspNetCore.ResponseCaching.Abstractions" Version="1.2.0-*" />
3028
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.2.0-*" />
31-
<PackageReference Include="Microsoft.AspNetCore.Routing.DecisionTree.Sources" Version="1.2.0-*">
32-
<PrivateAssets>All</PrivateAssets>
33-
</PackageReference>
34-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
35-
<PrivateAssets>All</PrivateAssets>
36-
</PackageReference>
29+
<PackageReference Include="Microsoft.AspNetCore.Routing.DecisionTree.Sources" Version="1.2.0-*" PrivateAssets="All" />
30+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
3731
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.2.0-*" />
3832
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="1.2.0-*" />
39-
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*">
40-
<PrivateAssets>All</PrivateAssets>
41-
</PackageReference>
33+
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*" PrivateAssets="All" />
4234
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.2.0-*" />
4335
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.2.0-*" />
44-
<PackageReference Include="Microsoft.Extensions.PropertyActivator.Sources" Version="1.2.0-*">
45-
<PrivateAssets>All</PrivateAssets>
46-
</PackageReference>
47-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
48-
<PrivateAssets>All</PrivateAssets>
49-
</PackageReference>
50-
<PackageReference Include="Microsoft.Extensions.SecurityHelper.Sources" Version="1.2.0-*">
51-
<PrivateAssets>All</PrivateAssets>
52-
</PackageReference>
36+
<PackageReference Include="Microsoft.Extensions.PropertyActivator.Sources" Version="1.2.0-*" PrivateAssets="All" />
37+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
38+
<PackageReference Include="Microsoft.Extensions.SecurityHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
5339
<PackageReference Include="System.Buffers" Version="4.4.0-*" />
5440
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.4.0-*" />
5541
</ItemGroup>
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

76
[assembly: InternalsVisibleTo("Microsoft.AspNetCore.Mvc.Core.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]
8-
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]
9-
[assembly: AssemblyMetadata("Serviceable", "True")]
7+
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]

src/Microsoft.AspNetCore.Mvc.Cors/Microsoft.AspNetCore.Mvc.Cors.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Core\Microsoft.AspNetCore.Mvc.Core.csproj" />
15-
</ItemGroup>
1615

17-
<ItemGroup>
1816
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="1.2.0-*" />
1917
</ItemGroup>
2018

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

7-
[assembly: AssemblyMetadata("Serviceable", "True")]
86
[assembly: InternalsVisibleTo("Microsoft.AspNetCore.Mvc.Cors.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]

src/Microsoft.AspNetCore.Mvc.DataAnnotations/Microsoft.AspNetCore.Mvc.DataAnnotations.csproj

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,9 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Core\Microsoft.AspNetCore.Mvc.Core.csproj" />
15-
</ItemGroup>
1615

17-
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
19-
<PrivateAssets>All</PrivateAssets>
20-
</PackageReference>
21-
<PackageReference Include="Microsoft.Extensions.CopyOnWriteDictionary.Sources" Version="1.2.0-*">
22-
<PrivateAssets>All</PrivateAssets>
23-
</PackageReference>
16+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
17+
<PackageReference Include="Microsoft.Extensions.CopyOnWriteDictionary.Sources" Version="1.2.0-*" PrivateAssets="All" />
2418
<PackageReference Include="Microsoft.Extensions.Localization" Version="1.2.0-*" />
2519
<PackageReference Include="System.ComponentModel.Annotations" Version="4.4.0-*" />
2620
</ItemGroup>
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

7-
[assembly: AssemblyMetadata("Serviceable", "True")]
86
[assembly: InternalsVisibleTo("Microsoft.AspNetCore.Mvc.DataAnnotations.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]

src/Microsoft.AspNetCore.Mvc.Formatters.Json/Microsoft.AspNetCore.Mvc.Formatters.Json.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,9 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Core\Microsoft.AspNetCore.Mvc.Core.csproj" />
15-
</ItemGroup>
1615

17-
<ItemGroup>
1816
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="1.2.0-*" />
19-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
20-
<PrivateAssets>All</PrivateAssets>
21-
</PackageReference>
17+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
2218
</ItemGroup>
2319

2420
</Project>

src/Microsoft.AspNetCore.Mvc.Formatters.Json/Properties/AssemblyInfo.cs

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

src/Microsoft.AspNetCore.Mvc.Formatters.Xml/Microsoft.AspNetCore.Mvc.Formatters.Xml.csproj

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,9 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Core\Microsoft.AspNetCore.Mvc.Core.csproj" />
15-
</ItemGroup>
1615

17-
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*">
19-
<PrivateAssets>All</PrivateAssets>
20-
</PackageReference>
21-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
22-
<PrivateAssets>All</PrivateAssets>
23-
</PackageReference>
16+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
17+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
2418
<PackageReference Include="System.Runtime.Serialization.Xml" Version="4.4.0-*" />
2519
<PackageReference Include="System.Xml.XmlSerializer" Version="4.4.0-*" />
2620
</ItemGroup>

src/Microsoft.AspNetCore.Mvc.Formatters.Xml/Properties/AssemblyInfo.cs

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

src/Microsoft.AspNetCore.Mvc.Localization/Microsoft.AspNetCore.Mvc.Localization.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,11 @@ Microsoft.AspNetCore.Mvc.Localization.IViewLocalizer</Description>
1515

1616
<ItemGroup>
1717
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Razor\Microsoft.AspNetCore.Mvc.Razor.csproj" />
18-
</ItemGroup>
1918

20-
<ItemGroup>
2119
<PackageReference Include="Microsoft.AspNetCore.Localization" Version="1.2.0-*" />
2220
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.2.0-*" />
2321
<PackageReference Include="Microsoft.Extensions.Localization" Version="1.2.0-*" />
24-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
25-
<PrivateAssets>All</PrivateAssets>
26-
</PackageReference>
22+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
2723
</ItemGroup>
2824

2925
</Project>

src/Microsoft.AspNetCore.Mvc.Localization/Properties/AssemblyInfo.cs

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

src/Microsoft.AspNetCore.Mvc.Razor.Host/Microsoft.AspNetCore.Mvc.Razor.Host.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
<PackageReference Include="Microsoft.AspNetCore.Razor.Evolution" Version="1.2.0-*" />
1515
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="1.2.0-*" />
1616
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="1.2.0-*" />
17-
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*">
18-
<PrivateAssets>All</PrivateAssets>
19-
</PackageReference>
17+
<PackageReference Include="Microsoft.Extensions.PropertyHelper.Sources" Version="1.2.0-*" PrivateAssets="All" />
2018
</ItemGroup>
2119

2220
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using System.Reflection;
54
using System.Runtime.CompilerServices;
65

76
[assembly: InternalsVisibleTo("Microsoft.AspNetCore.Mvc.Razor.Host.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]
8-
[assembly: AssemblyMetadata("Serviceable", "True")]

0 commit comments

Comments
 (0)