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

Commit 79663ef

Browse files
author
Nate McMaster
committed
Upgrade to RC.3
1 parent 8ba85cf commit 79663ef

File tree

26 files changed

+71
-901
lines changed

26 files changed

+71
-901
lines changed

Razor.sln

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.26020.0
3+
VisualStudioVersion = 15.0.26118.1
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{3C0D6505-79B3-49D0-B4C3-176F0F1836ED}"
66
EndProject
@@ -14,7 +14,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Razor.
1414
EndProject
1515
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F8C12DD6-659D-405A-AA27-FB22AD92A010}"
1616
ProjectSection(SolutionItems) = preProject
17-
global.json = global.json
1817
NuGet.config = NuGet.config
1918
EndProjectSection
2019
EndProject

build/common.props

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project>
1+
<Project ToolsVersion="15.0">
2+
23
<Import Project="..\version.props" />
34

45
<PropertyGroup>
@@ -8,13 +9,17 @@
89
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
910
<SignAssembly>true</SignAssembly>
1011
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
11-
12-
<!-- Workaround for the **/*.cs **/*.resx being auto included in the SDK installed by the latest builds of VS and the rc2 SDK that we currently use -->
13-
<EnableDefaultItems>false</EnableDefaultItems>
12+
<NetCoreAppImplicitPackageVersion>1.2.0-*</NetCoreAppImplicitPackageVersion>
13+
<NetStandardImplicitPackageVersion>1.6.2-*</NetStandardImplicitPackageVersion>
14+
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
1415
</PropertyGroup>
1516

1617
<ItemGroup>
17-
<PackageReference Include="Internal.AspNetCore.Sdk" Version="1.0.0-*" PrivateAssets="All" />
18+
<PackageReference Include="Internal.AspNetCore.Sdk" Version="1.0.1-*" PrivateAssets="All" />
19+
</ItemGroup>
20+
21+
<ItemGroup Condition="'$(TargetFrameworkIdentifier)'=='.NETFramework' AND '$(OutputType)'=='library'">
22+
<PackageReference Include="NETStandard.Library" Version="$(NetStandardImplicitPackageVersion)" />
1823
</ItemGroup>
1924

2025
</Project>

global.json

-5
This file was deleted.

makefile.shade

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ k-standard-goals
4242
}
4343

4444
#pack-sources target='build-pack'
45-
dotnet command='msbuild shared/build.proj /t:Pack /v:n'
45+
dotnet command='msbuild shared/sources.csproj "/t:Restore;PackAll" /v:n'

shared/build.proj

-24
This file was deleted.

shared/sources.csproj

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!-- this is a dummy project to workaround https://github.com/NuGet/Home/issues/4254 -->
2+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
3+
<Import Project="..\build\common.props" />
4+
5+
<PropertyGroup>
6+
<PackageOutputPath Condition="'$(PackageOutputPath)'==''">$(MSBuildThisFileDirectory)..\artifacts\build</PackageOutputPath>
7+
<NuspecBasePath>$(MSBuildThisFileDirectory)\$(PackageId)</NuspecBasePath>
8+
<TargetFramework>netstandard1.0</TargetFramework>
9+
<EnableDefaultItems>false</EnableDefaultItems>
10+
<Description>$(PackageId)</Description>
11+
<IncludeBuildOutput>false</IncludeBuildOutput>
12+
<ContentTargetFolders>contentFiles</ContentTargetFolders>
13+
</PropertyGroup>
14+
15+
<ItemGroup Condition="'$(NuspecBasePath)' != ''">
16+
<Compile Include="$(NuspecBasePath)\**\*.cs" Pack="true" />
17+
<EmbeddedResource Include="$(NuspecBasePath)\**\*.resx" Pack="true" />
18+
<PackageReference Update="@(PackageReference)" PrivateAssets="All" />
19+
</ItemGroup>
20+
21+
<Target Name="PackAll">
22+
<ItemGroup>
23+
<Packages Include="$([System.IO.Directory]::GetDirectories(&quot;$(MSBuildThisFileDirectory)&quot;, '*.Sources'))" />
24+
</ItemGroup>
25+
<MSBuild Projects="$(MSBuildThisFile)"
26+
Targets="Pack"
27+
Properties="PackageVersion=$(Version);PackageId=%(Packages.FileName)%(Packages.Extension);NoBuild=true" />
28+
</Target>
29+
</Project>

shared/sources.nuspec

-19
This file was deleted.

src/Microsoft.AspNetCore.Razor.Evolution/Microsoft.AspNetCore.Razor.Evolution.csproj

+1-10
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<Compile Include="**\*.cs" />
15-
<EmbeddedResource Include="**\*.resx" />
16-
</ItemGroup>
17-
18-
<ItemGroup>
19-
<!-- <PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*" PrivateAssets="All" /> -->
20-
</ItemGroup>
21-
22-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
23-
<PackageReference Include="NETStandard.Library" Version="1.6.2-*" />
14+
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*" PrivateAssets="All" />
2415
</ItemGroup>
2516

2617
</Project>

src/Microsoft.AspNetCore.Razor.Evolution/__TemporarySources__/HashCodeCombiner.cs

-86
This file was deleted.

src/Microsoft.AspNetCore.Razor.Runtime/Microsoft.AspNetCore.Razor.Runtime.csproj

+5-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<Import Project="..\..\build\common.props" />
44

55
<PropertyGroup>
6-
<Description>Runtime components for rendering Razor pages and implementing tag helpers.
6+
<Summary>Runtime components for rendering Razor pages and implementing tag helpers.</Summary>
7+
<Description>$(Summary)
8+
79
Commonly used types:
810
Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeNameAttribute
911
Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElementAttribute
@@ -15,22 +17,13 @@ Microsoft.AspNetCore.Razor.TagHelpers.ITagHelper</Description>
1517
<PackageTags>aspnetcore;cshtml;razor;taghelper;taghelpers</PackageTags>
1618
</PropertyGroup>
1719

18-
<ItemGroup>
19-
<Compile Include="**\*.cs" />
20-
<EmbeddedResource Include="**\*.resx" />
21-
</ItemGroup>
22-
2320
<ItemGroup>
2421
<ProjectReference Include="..\Microsoft.AspNetCore.Razor\Microsoft.AspNetCore.Razor.csproj" />
25-
</ItemGroup>
26-
27-
<ItemGroup>
2822
<PackageReference Include="Microsoft.AspNetCore.Html.Abstractions" Version="1.2.0-*" />
29-
<PackageReference Include="NETStandard.Library" Version="1.6.2-*" />
30-
<!-- <PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
23+
<PackageReference Include="Microsoft.Extensions.ClosedGenericMatcher.Sources" Version="1.2.0-*" PrivateAssets="All" />
3124
<PackageReference Include="Microsoft.Extensions.CopyOnWriteDictionary.Sources" Version="1.2.0-*" PrivateAssets="All" />
3225
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="1.2.0-*" PrivateAssets="All" />
33-
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="1.2.0-*" PrivateAssets="All" /> -->
26+
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="1.2.0-*" PrivateAssets="All" />
3427
</ItemGroup>
3528

3629
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">

src/Microsoft.AspNetCore.Razor.Runtime/__TemporarySources__/ClosedGenericMatcher.cs

-108
This file was deleted.

0 commit comments

Comments
 (0)