Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
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
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"type": "item"
},
"groupIdentity": "Microsoft.AspNetCore.Mvc.ViewStart",
"precedence": "9900",
"identity": "Microsoft.AspNetCore.Mvc.ViewStart.9.0",
"precedence": "10000",
"identity": "Microsoft.AspNetCore.Mvc.ViewStart.10.0",
"shortName": "viewstart",
"sourceName": "ignoreme",
"primaryOutputs": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Webová aplikace Blazor",
"description": "Šablona projektu pro vytvoření webové aplikace Blazor, která podporuje vykreslování na straně serveru i interaktivitu klienta. Tato šablona se dá použít pro webové aplikace s bohatými dynamickými uživatelskými rozhraními (UI).",
"symbols/Framework/description": "Cílová architektura pro projekt",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "ID, které se má použít pro tajné kódy (používá se s individuálním ověřováním).",
"symbols/skipRestore/description": "Pokud se tato možnost zadá, přeskočí automatické obnovení projektu při vytvoření.",
"symbols/ExcludeLaunchSettings/description": "Určuje, jestli se má z vygenerované šablony vyloučit soubor launchSettings.json.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Blazor-Web-App",
"description": "Eine Projektvorlage zum Erstellen einer Blazor-Web-App, die sowohl serverseitiges Rendering als auch Clientinteraktivität unterstützt. Diese Vorlage kann für Web-Apps mit umfangreichen dynamischen Benutzeroberflächen (UIs) verwendet werden.",
"symbols/Framework/description": "Das Zielframework für das Projekt.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "Die für Geheimnisse zu verwendende ID (Verwendung mit individueller Authentifizierung).",
"symbols/skipRestore/description": "Wenn angegeben, wird die automatische Wiederherstellung des Projekts beim Erstellen übersprungen.",
"symbols/ExcludeLaunchSettings/description": "Ob launchSettings.json aus der generierten Vorlage ausgeschlossen werden soll.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Blazor Web App",
"description": "A project template for creating a Blazor web app that supports both server-side rendering and client interactivity. This template can be used for web apps with rich dynamic user interfaces (UIs).",
"symbols/Framework/description": "The target framework for the project.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "The ID to use for secrets (use with Individual auth).",
"symbols/skipRestore/description": "If specified, skips the automatic restore of the project on create.",
"symbols/ExcludeLaunchSettings/description": "Whether to exclude launchSettings.json from the generated template.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Aplicación web Blazor",
"description": "Plantilla de proyecto para crear una aplicación web de Blazor que admita tanto la representación del lado del servidor como la interactividad del cliente. Esta plantilla se puede usar para las aplicaciones web con interfaces de usuario dinámicas enriquecidas.",
"symbols/Framework/description": "Marco de destino del proyecto.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "Identificador que se va a usar para los secretos (se usa con la autenticación individual).",
"symbols/skipRestore/description": "Si se especifica, se omite la restauración automática del proyecto durante la creación.",
"symbols/ExcludeLaunchSettings/description": "Indica si se va a excluir launchSettings.json de la plantilla generada.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Application web Blazor",
"description": "Modèle de projet pour la création d’une application web Blazor qui prend en charge le rendu côté serveur et l’interactivité du client. Ce modèle peut être utilisé pour les applications web avec des interfaces utilisateur dynamiques enrichies.",
"symbols/Framework/description": "Framework cible du projet.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "ID à utiliser pour les secrets (à utiliser avec l’authentification individuelle).",
"symbols/skipRestore/description": "S’il est spécifié, ignore la restauration automatique du projet lors de la création.",
"symbols/ExcludeLaunchSettings/description": "Indique s’il faut exclure launchSettings.json du modèle généré.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "App Web Blazor",
"description": "Modello di progetto per la creazione di un'app Web Blazor che supporta sia il rendering lato server sia l'interattività client. Questo modello può essere usato per app Web con interfacce utente dinamiche avanzate.",
"symbols/Framework/description": "Il framework di destinazione per il progetto.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "ID da usare per i segreti (usare con l'autenticazione Individual).",
"symbols/skipRestore/description": "Se specificato, ignora il ripristino automatico del progetto durante la creazione.",
"symbols/ExcludeLaunchSettings/description": "Indica se escludere launchSettings.json dal modello generato.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Blazor Web アプリ",
"description": "サーバー側のレンダリングとクライアントの対話機能の両方をサポートする Blazor Web アプリを作成するためのプロジェクト テンプレートです。このテンプレートは、リッチな動的ユーザー インターフェイス (UI) を持つ Web アプリに使用できます。",
"symbols/Framework/description": "プロジェクトのターゲット フレームワークです。",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "シークレットで使用する ID (IndividualAuth で使用)。",
"symbols/skipRestore/description": "指定した場合、作成時にプロジェクトの自動復元がスキップされます。",
"symbols/ExcludeLaunchSettings/description": "生成されたテンプレートから launchSettings.json を除外するかどうか。",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Blazor 웹앱",
"description": "서버 측 렌더링 및 클라이언트 대화형 작업을 모두 지원하는 Blazor 웹앱을 만들기 위한 프로젝트 템플릿입니다. 이 템플릿은 풍부한 동적 UI(사용자 인터페이스)가 있는 웹앱에 사용할 수 있습니다.",
"symbols/Framework/description": "프로젝트에 대한 대상 프레임워크입니다.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "비밀에 사용할 ID입니다(개별 인증과 함께 사용).",
"symbols/skipRestore/description": "지정된 경우, 프로젝트 생성 시 자동 복원을 건너뜁니다.",
"symbols/ExcludeLaunchSettings/description": "생성된 템플릿에서 launchSettings.json을 제외할지 여부입니다.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Aplikacja internetowa Blazor",
"description": "Szablon projektu służący do tworzenia aplikacji internetowej platformy Blazor, która obsługuje renderowanie po stronie serwera i interakcyjność klienta. Ten szablon może być używany dla aplikacji internetowych z zaawansowanymi dynamicznymi interfejsami użytkownika.",
"symbols/Framework/description": "Platforma docelowa dla tego projektu.",
"symbols/Framework/choices/net9.0/description": "Target net9.0",
"symbols/Framework/choices/net10.0/description": "Target net10.0",
"symbols/UserSecretsId/description": "Identyfikator do użycia dla wpisów tajnych (używany z indywidualnym uwierzytelnianym).",
"symbols/skipRestore/description": "Jeśli ta opcja jest określona, pomija automatyczne przywracanie projektu podczas tworzenia.",
"symbols/ExcludeLaunchSettings/description": "Określa, czy wykluczyć plik launchSettings.json z wygenerowanego szablonu.",
Expand Down
Loading
Loading