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

[main] Update dependencies from dotnet/efcore, dotnet/runtime #58090

Merged
merged 22 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ed49feb
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Sep 26, 2024
0781624
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Sep 27, 2024
53313c9
Update dependencies from https://github.com/dotnet/efcore build 20240…
dotnet-maestro[bot] Sep 27, 2024
6cdb14f
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Sep 28, 2024
cd0c8ca
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Sep 29, 2024
fcff3bf
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Sep 30, 2024
5481685
Update dependencies from https://github.com/dotnet/efcore build 20240…
dotnet-maestro[bot] Sep 30, 2024
d3ae126
Update dependencies from https://github.com/dotnet/runtime build 2024…
dotnet-maestro[bot] Oct 1, 2024
6821809
Update dependencies from https://github.com/dotnet/efcore build 20241…
dotnet-maestro[bot] Oct 1, 2024
87cf9b9
Update to net10.0
wtgodbe Oct 1, 2024
1df5a10
Fix CurrentLtsTargetFramework
wtgodbe Oct 1, 2024
1ce3bde
Suppress linker error
wtgodbe Oct 1, 2024
672aae0
Another suppression
wtgodbe Oct 1, 2024
5ee5bd0
Using
wtgodbe Oct 1, 2024
416f56d
More suppressions
wtgodbe Oct 1, 2024
72bdad0
Update TFM workarounds
wtgodbe Oct 1, 2024
1bb4aa9
Revert "More suppressions"
wtgodbe Oct 1, 2024
f4b3aa8
Revert "Using"
wtgodbe Oct 1, 2024
6620314
Revert "Another suppression"
wtgodbe Oct 1, 2024
29fe5a9
Revert "Suppress linker error"
wtgodbe Oct 1, 2024
db0f7be
Repotasks 9
wtgodbe Oct 1, 2024
88523f2
Fix double commas
wtgodbe Oct 1, 2024
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"remoteEnv": {
"PATH": "${containerWorkspaceFolder}/.dotnet:${containerEnv:PATH}",
"DOTNET_MULTILEVEL_LOOKUP": "0",
"TARGET": "net9.0",
"TARGET": "net10.0",
"DOTNET_WATCH_SUPPRESS_LAUNCH_BROWSER": "true"
},
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
Expand Down
13 changes: 13 additions & 0 deletions docs/DailyBuilds.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ If you want to download the latest daily build and use it in a project, then you
</configuration>
```

## .NET 10

```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
```

*NOTE: This NuGet.Config should be with your application unless you want nightly packages to potentially start being restored for other apps on the machine.*

Some features, such as new target frameworks, may require prerelease tooling builds for Visual Studio.
Expand Down
2 changes: 1 addition & 1 deletion eng/DotNetBuild.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<GitHubRepositoryName>aspnetcore</GitHubRepositoryName>
<SourceBuildManagedOnly>true</SourceBuildManagedOnly>
<SourceBuildTargetFrameworkFilter>netstandard2.0%3bnetstandard2.1%3bnetcoreapp2.1%3bnetcoreapp3.1%3bnet5.0%3bnet6.0%3bnet7.0%3bnet8.0%3bnet9.0</SourceBuildTargetFrameworkFilter>
<SourceBuildTargetFrameworkFilter>netstandard2.0%3bnetstandard2.1%3bnetcoreapp2.1%3bnetcoreapp3.1%3bnet5.0%3bnet6.0%3bnet7.0%3bnet8.0%3bnet9.0%3bnet10.0</SourceBuildTargetFrameworkFilter>
</PropertyGroup>

<!--
Expand Down
320 changes: 160 additions & 160 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

164 changes: 82 additions & 82 deletions eng/Versions.props

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion eng/helix/helix.proj
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<HelixCorrelationPayload Include="$(NUGET_PACKAGES)\dotnet-serve\$(DotnetServeVersion)\dotnet-serve.$(DotnetServeVersion).nupkg" />

<!-- Grab published `HelixTestRunner` project output. -->
<HelixCorrelationPayload Include="$(ArtifactsBinDir)HelixTestRunner\$(Configuration)\net9.0\publish\"
<HelixCorrelationPayload Include="$(ArtifactsBinDir)HelixTestRunner\$(Configuration)\net10.0\publish\"
Destination="HelixTestRunner" />
</ItemGroup>

Expand Down
12 changes: 6 additions & 6 deletions eng/testing/linker/SupportFiles/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
<PackageReference Include="Microsoft.DotNet.ILCompiler"
Version="$(MicrosoftNETCoreAppRuntimeVersion)" />

<!-- Workaround when there is no vNext SDK available; copy known packs info from 8.0. -->
<KnownAppHostPack Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'net8.0'))"
<!-- Workaround when there is no vNext SDK available; copy known packs info from 9.0. -->
<KnownAppHostPack Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="$(TargetFramework)"
Condition="'@(KnownAppHostPack->Count())' != '0' AND
!(@(KnownAppHostPack->AnyHaveMetadataValue('TargetFramework', '$(TargetFramework)')))" />
<KnownRuntimePack Include="@(KnownRuntimePack->WithMetadataValue('TargetFramework', 'net8.0'))"
<KnownRuntimePack Include="@(KnownRuntimePack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="$(TargetFramework)"
Condition="'@(KnownRuntimePack->Count())' != '0' AND
!(@(KnownRuntimePack->AnyHaveMetadataValue('TargetFramework', '$(TargetFramework)')))" />
<KnownFrameworkReference Include="@(KnownFrameworkReference->WithMetadataValue('TargetFramework', 'net8.0'))"
<KnownFrameworkReference Include="@(KnownFrameworkReference->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="$(TargetFramework)"
Condition="'@(KnownFrameworkReference->Count())' != '0' AND
!(@(KnownFrameworkReference->AnyHaveMetadataValue('TargetFramework', '$(TargetFramework)')))" />
<KnownILLinkPack Include="@(KnownILLinkPack->WithMetadataValue('TargetFramework', 'net8.0'))"
<KnownILLinkPack Include="@(KnownILLinkPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="$(TargetFramework)"
Condition="'@(KnownILLinkPack->Count())' != '0' AND
!(@(KnownILLinkPack->AnyHaveMetadataValue('TargetFramework', '$(TargetFramework)')))" />
<KnownILCompilerPack Include="@(KnownILCompilerPack->WithMetadataValue('TargetFramework', 'net8.0'))"
<KnownILCompilerPack Include="@(KnownILCompilerPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="$(TargetFramework)"
Condition="'@(KnownILCompilerPack->Count())' != '0' AND
!(@(KnownILCompilerPack->AnyHaveMetadataValue('TargetFramework', '$(TargetFramework)')))" />
Expand Down
16 changes: 8 additions & 8 deletions eng/tools/GenerateFiles/Directory.Build.targets.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,35 @@
Condition=" '$(UpdateAspNetCoreKnownFramework)' == '' ">true</UpdateAspNetCoreKnownFramework>
</PropertyGroup>

<!-- Workaround when there is no vNext SDK available; copy known apphost/framework reference info from 8.0. -->
<!-- Workaround when there is no vNext SDK available; copy known apphost/framework reference info from 9.0. -->
<ItemGroup>
<KnownAppHostPack
Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownAppHostPack->Count())' != '0' AND
!(@(KnownAppHostPack->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
<KnownRuntimePack
Include="@(KnownRuntimePack->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownRuntimePack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownRuntimePack->Count())' != '0' AND
!(@(KnownRuntimePack->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
<KnownFrameworkReference
Include="@(KnownFrameworkReference->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownFrameworkReference->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownFrameworkReference->Count())' != '0' AND
!(@(KnownFrameworkReference->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
<KnownILLinkPack
Include="@(KnownILLinkPack->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownILLinkPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownILLinkPack->Count())' != '0' AND
!(@(KnownILLinkPack->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
<KnownILCompilerPack
Include="@(KnownILCompilerPack->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownILCompilerPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownILCompilerPack->Count())' != '0' AND
!(@(KnownILCompilerPack->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
<KnownWebAssemblySdkPack
Include="@(KnownWebAssemblySdkPack->WithMetadataValue('TargetFramework', 'net8.0'))"
Include="@(KnownWebAssemblySdkPack->WithMetadataValue('TargetFramework', 'net9.0'))"
TargetFramework="${DefaultNetCoreTargetFramework}"
Condition="'@(KnownWebAssemblySdkPack->Count())' != '0' AND
!(@(KnownWebAssemblySdkPack->AnyHaveMetadataValue('TargetFramework', '${DefaultNetCoreTargetFramework}')))" />
Expand All @@ -44,7 +44,7 @@
<ItemGroup>
<!--
Reference base shared framework at incoming dependency flow version, not bundled sdk version.
Apply this to all projects that target the default tfm (e.g. net8.0) or a rid-based variant of it (e.g. net8.0-windows)
Apply this to all projects that target the default tfm (e.g. net9.0) or a rid-based variant of it (e.g. net9.0-windows)
-->
<FrameworkReference
Update="Microsoft.NETCore.App"
Expand Down
2 changes: 1 addition & 1 deletion eng/tools/HelixTestRunner/HelixTestRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<!-- Update helix.proj when this TFM is updated. -->
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>

<OutputType>Exe</OutputType>
<NoWarn>$(NoWarn);CA2007;NU5104</NoWarn>
Expand Down
4 changes: 2 additions & 2 deletions eng/tools/RepoTasks/RepoTasks.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(DefaultNetCoreTargetFramework)</TargetFrameworks>
<TargetFrameworks>net9.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net472</TargetFrameworks>
<DefineConstants Condition="'$(TargetFramework)' == 'net472'">$(DefineConstants);BUILD_MSI_TASKS</DefineConstants>
<Optimize>false</Optimize>
Expand Down Expand Up @@ -31,7 +31,7 @@
<Compile Remove="shared\CertificateGeneration\*.cs" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildFrameworkVersion)" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildTasksCoreVersion)" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCoreVersion)" />
Expand Down
2 changes: 1 addition & 1 deletion eng/tools/RepoTasks/RepoTasks.tasks
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<_RepoTaskAssemblyFolder Condition="'$(MSBuildRuntimeType)' == 'core'">$(DefaultNetCoreTargetFramework)</_RepoTaskAssemblyFolder>
<_RepoTaskAssemblyFolder Condition="'$(MSBuildRuntimeType)' == 'core'">net9.0</_RepoTaskAssemblyFolder>
<_RepoTaskAssemblyFolder Condition="'$(MSBuildRuntimeType)' != 'core'">net472</_RepoTaskAssemblyFolder>
<_RepoTaskAssembly>$(ArtifactsBinDir)RepoTasks\Release\$(_RepoTaskAssemblyFolder)\RepoTasks.dll</_RepoTaskAssembly>
</PropertyGroup>
Expand Down
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mgravell now that CurrentLtsTargetFramework is net10.0, can we delete the net8.0 folder from PublicAPI here?

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
$CommonMetadataElements$
<dependencies>
<group targetFramework=".net9.0">
<group targetFramework=".net10.0">
<dependency id="Microsoft.AspNetCore.Components.Analyzers" version="$componentAnalyzerVersion$" />
<dependency id="Microsoft.AspNetCore.Authorization" version="$authorizationVersion$" exclude="Build,Analyzers" />
</group>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"tfm": "net10.0",
"framework": {
"name": "Microsoft.AspNetCore.App",
"version": "${FrameworkVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public async Task RunsInIISExpressInProcess()
var applicationName = "CreateDefaultBuilderApp";
var deploymentParameters = new DeploymentParameters(Path.Combine(GetTestSitesPath(), applicationName), ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64)
{
TargetFramework = "net9.0",
TargetFramework = "net10.0",
HostingModel = HostingModel.InProcess
};

Expand Down Expand Up @@ -208,7 +208,7 @@ private async Task ExecuteTestApp(string applicationName,
{
var deploymentParameters = new DeploymentParameters(Path.Combine(GetTestSitesPath(), applicationName), ServerType.Kestrel, RuntimeFlavor.CoreClr, RuntimeArchitectures.Current)
{
TargetFramework = "net9.0",
TargetFramework = "net10.0",
};

if (setTestEnvVars)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
$CommonMetadataElements$
<dependencies>
<group targetFramework=".net9.0">
<group targetFramework=".net10.0">
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="$AbstractionsVersion$" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
$CommonMetadataElements$
<dependencies>
<group targetFramework=".net9.0">
<group targetFramework=".net10.0">
<dependency id="Microsoft.Extensions.FileProviders.Abstractions" version="$AbstractionsVersion$" exclude="Build,Analyzers" />
</group>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/App.Ref/src/CompatibilitySuppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Suppression>
<DiagnosticId>PKV004</DiagnosticId>
<Target>net9.0</Target>
<Target>net10.0</Target>
</Suppression>
</Suppressions>
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Suppression>
<DiagnosticId>PKV0001</DiagnosticId>
<Target>net9.0</Target>
<Target>net10.0</Target>
</Suppression>
</Suppressions>
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ internal static ReferenceAssemblies GetReferenceAssemblies()
Environment.GetEnvironmentVariable("HELIX_WORKITEM_ROOT"),
"NuGet.config") :
Path.Combine(TestData.GetRepoRoot(), "NuGet.config");
var net8Ref = new ReferenceAssemblies(
"net9.0",
var net10Ref = new ReferenceAssemblies(
"net10.0",
new PackageIdentity(
"Microsoft.NETCore.App.Ref",
TestData.GetMicrosoftNETCoreAppRefPackageVersion()),
Path.Combine("ref", "net9.0"))
Path.Combine("ref", "net10.0"))
.WithNuGetConfigFilePath(nugetConfigPath);

return net8Ref.AddAssemblies(ImmutableArray.Create(
return net10Ref.AddAssemblies(ImmutableArray.Create(
TrimAssemblyExtension(typeof(System.IO.Pipelines.PipeReader).Assembly.Location),
TrimAssemblyExtension(typeof(Microsoft.AspNetCore.Authorization.IAuthorizeData).Assembly.Location),
TrimAssemblyExtension(typeof(Microsoft.AspNetCore.Mvc.ModelBinding.IBinderTypeProviderMetadata).Assembly.Location),
Expand Down
3 changes: 2 additions & 1 deletion src/Hosting/Server.IntegrationTesting/src/Common/Tfm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public static class Tfm
public const string Net70 = "net7.0";
public const string Net80 = "net8.0";
public const string Net90 = "net9.0";
public const string Default = Net90;
public const string Net100 = "net10.0";
public const string Default = Net100;

public static bool Matches(string tfm1, string tfm2)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net9.0/OutputCachingSample.dll",
"program": "${workspaceFolder}/bin/Debug/net10.0/OutputCachingSample.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public async Task DeployTestAndAddToSpec(ServerType server, bool ssl, string env
{
Scheme = (ssl ? Uri.UriSchemeHttps : Uri.UriSchemeHttp),
ApplicationType = ApplicationType.Portable,
TargetFramework = "Net9.0",
TargetFramework = "Net10.0",
EnvironmentName = environment,
SiteName = "HttpTestSite", // This is configured in the Http.config
ServerConfigTemplateContent = (server == ServerType.IISExpress) ? File.ReadAllText(configPath) : null,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="..\..\build\net9.0\Microsoft.AspNetCore.Mvc.Testing.targets" />
<Import Project="..\..\build\net10.0\Microsoft.AspNetCore.Mvc.Testing.targets" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"generatorVersions": "[1.0.0.0-*)",
"description": "LESS is a language that compiles into CSS",
"groupIdentity": "Microsoft.DotNet.Web.ClientItems.Less",
"precedence": "9900",
"identity": "Microsoft.DotNet.Web.ClientItems.Less.9.0",
"precedence": "10000",
"identity": "Microsoft.DotNet.Web.ClientItems.Less.10.0",
"shortName": "less",
"sourceName": "styleSheet1",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"generatorVersions": "[1.0.0.0-*)",
"description": "SCSS is a language that compiles into CSS",
"groupIdentity": "Microsoft.DotNet.Web.ClientItems.Scss",
"precedence": "9900",
"identity": "Microsoft.DotNet.Web.ClientItems.Scss.9.0",
"precedence": "10000",
"identity": "Microsoft.DotNet.Web.ClientItems.Scss.10.0",
"shortName": "scss",
"sourceName": "styleSheet1",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"generatorVersions": "[1.0.0.0-*)",
"description": "A blank TypeScript source file",
"groupIdentity": "Microsoft.DotNet.Web.ClientItems.TypeScript",
"precedence": "9900",
"identity": "Microsoft.DotNet.Web.ClientItems.TypeScript.9.0",
"precedence": "10000",
"identity": "Microsoft.DotNet.Web.ClientItems.TypeScript.10.0",
"shortName": "tsfile",
"sourceName": "file1",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.ApiController",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.ApiController.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.ApiController.10.0",
"shortName": "apicontroller",
"sourceName": "ValueController",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.MvcController",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.MvcController.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.MvcController.10.0",
"shortName": "mvccontroller",
"sourceName": "HomeController",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.Web.Grpc.Protobuf",
"precedence": "9900",
"identity": "Microsoft.Web.Grpc.Protobuf.9.0",
"precedence": "10000",
"identity": "Microsoft.Web.Grpc.Protobuf.10.0",
"shortname": "proto",
"sourceName": "protobuf",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Components.RazorComponent",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Components.RazorComponent.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Components.RazorComponent.10.0",
"shortname": "razorcomponent",
"sourceName": "Component1",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.RazorPage",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.RazorPage.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.RazorPage.10.0",
"shortName": "page",
"sourceName": "Index",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.RazorView",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.RazorView.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.RazorView.10.0",
"shortName": "view",
"sourceName": "Index",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.ViewImports",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.ViewImports.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.ViewImports.10.0",
"shortName": "viewimports",
"sourceName": "ignoreme",
"primaryOutputs": [
Expand Down
Loading
Loading