Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/9.0.3xx] Update dependencies from dotnet/razor #45980

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -321,22 +321,22 @@
<Sha>af22effae4069a5dfb9b0735859de48820104f5b</Sha>
<SourceBuild RepoName="aspnetcore" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Razor.Tooling.Internal" Version="9.0.0-preview.25058.6">
<Dependency Name="Microsoft.CodeAnalysis.Razor.Tooling.Internal" Version="9.0.0-preview.25066.1">
<Uri>https://github.com/dotnet/razor</Uri>
<Sha>46efcec83821d7f0322c01bc9549de83e855dcac</Sha>
<Sha>9b1e979b6c3fe7cfbe30f595b9b0994d20bd482c</Sha>
</Dependency>
<Dependency Name="Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal" Version="9.0.0-preview.25058.6">
<Dependency Name="Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal" Version="9.0.0-preview.25066.1">
<Uri>https://github.com/dotnet/razor</Uri>
<Sha>46efcec83821d7f0322c01bc9549de83e855dcac</Sha>
<Sha>9b1e979b6c3fe7cfbe30f595b9b0994d20bd482c</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.Sdk.Razor.SourceGenerators.Transport" Version="9.0.0-preview.25058.6">
<Dependency Name="Microsoft.NET.Sdk.Razor.SourceGenerators.Transport" Version="9.0.0-preview.25066.1">
<Uri>https://github.com/dotnet/razor</Uri>
<Sha>46efcec83821d7f0322c01bc9549de83e855dcac</Sha>
<Sha>9b1e979b6c3fe7cfbe30f595b9b0994d20bd482c</Sha>
</Dependency>
<!-- Intermediate is necessary for source build. -->
<Dependency Name="Microsoft.SourceBuild.Intermediate.razor" Version="9.0.0-preview.25058.6">
<Dependency Name="Microsoft.SourceBuild.Intermediate.razor" Version="9.0.0-preview.25066.1">
<Uri>https://github.com/dotnet/razor</Uri>
<Sha>46efcec83821d7f0322c01bc9549de83e855dcac</Sha>
<Sha>9b1e979b6c3fe7cfbe30f595b9b0994d20bd482c</Sha>
<SourceBuild RepoName="razor" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0">
Expand Down
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@
</PropertyGroup>
<PropertyGroup>
<!-- Dependencies from https://github.com/dotnet/razor -->
<MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>9.0.0-preview.25058.6</MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>
<MicrosoftCodeAnalysisRazorToolingInternalVersion>9.0.0-preview.25058.6</MicrosoftCodeAnalysisRazorToolingInternalVersion>
<MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>9.0.0-preview.25058.6</MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>
<MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>9.0.0-preview.25066.1</MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>
<MicrosoftCodeAnalysisRazorToolingInternalVersion>9.0.0-preview.25066.1</MicrosoftCodeAnalysisRazorToolingInternalVersion>
<MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>9.0.0-preview.25066.1</MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Dependencies from https://github.com/dotnet/wpf -->
Expand Down
5 changes: 0 additions & 5 deletions src/RazorSdk/Tool/CompositeRazorProjectFileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ public override IEnumerable<RazorProjectItem> EnumerateItems(string basePath)
}
}

public override RazorProjectItem GetItem(string path)
{
return GetItem(path, fileKind: null);
}

public override RazorProjectItem GetItem(string path, string fileKind)
{
RazorProjectItem razorProjectItem = null;
Expand Down
4 changes: 1 addition & 3 deletions src/RazorSdk/Tool/GenerateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,8 @@ public SourceItem(string sourcePath, string outputPath, string physicalRelativeP
public string CssScope { get; }
}

private class StaticTagHelperFeature : ITagHelperFeature
private class StaticTagHelperFeature : RazorEngineFeatureBase, ITagHelperFeature
{
public RazorEngine Engine { get; set; }

public IReadOnlyList<TagHelperDescriptor> TagHelpers { get; set; }

public IReadOnlyList<TagHelperDescriptor> GetDescriptors() => TagHelpers;
Expand Down
Loading