Skip to content
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