diff --git a/Directory.Build.props b/Directory.Build.props
index 4a8c44efd..f14cc0b04 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -29,7 +29,9 @@ tools\TestAssetsDependencies\TestAssetsDependencies.csproj
truetrue
- netcoreapp2.1
+ netcoreapp2.2
+
+ 2.2
diff --git a/Documentation/specs/runtime-configuration-file.md b/Documentation/specs/runtime-configuration-file.md
index b021f9358..d70c100fb 100644
--- a/Documentation/specs/runtime-configuration-file.md
+++ b/Documentation/specs/runtime-configuration-file.md
@@ -2,43 +2,42 @@
The runtime configuration files store the dependencies of an application (formerly stored in the `.deps` file). They also include runtime configuration options, such as the Garbage Collector mode. Optionally they can also include data for runtime compilation (compilation settings used to compile the original application, and reference assemblies used by the application).
-**Note:** This document doesn't provide full explanations as to why individual items are needed in this file. That is covered in the [`corehost` spec](corehost.md) and via the `Microsoft.Extensions.DependencyModel` assembly.
+**Note:** This document doesn't provide full explanations as to why individual items are needed in this file. That is covered in the [host spec](corehost.md) and via the `Microsoft.Extensions.DependencyModel` assembly.
## What produces the files and where are they?
There are two runtime configuration files for a particular application. Given a project named `MyApp`, the compilation process produces the following files (on Windows, other platforms are similar):
* `MyApp.dll` - The managed assembly for `MyApp`, including an ECMA-compliant entry point token.
-* `MyApp.exe` - A copy of the `corehost.exe` executable. Only present when the application is a self-contained application.
-* `MyApp.runtimeconfig.json` - An **optional** configuration file containing runtime configuration settings. This file is required for portable applications, but not for self-contained apps.
-* `MyApp.deps.json` - A list of dependencies, as well as compilation context data and compilation dependencies. Not technically required, but required to use the servicing or package cache/shared package install features.
+* `MyApp.exe` - A copy of the `apphost.exe` executable. This is present when the application is self-contained, and in newer functionality (2.1.0+) for framework-dependent applications that wish to support platform-specific (non-portable) executables.
+* `MyApp.runtimeconfig.json` - An **optional** configuration file containing runtime configuration settings. This file is required for framework-dependent applications, but not for self-contained apps.
+* `MyApp.runtimeconfig.dev.json` - An **optional** configuration file containing runtime configuration settings that typically only exists in a non-published output and thus is used for development-time scenarios. This file typically specifies additional probing paths. Depending on the semantics of each setting, the setting is either combined with or overridden by the values from `MyApp.runtimeconfig.json`.
+* `MyApp.deps.json` - A list of dependencies, compilation dependencies and version information used to address assembly conflicts. Not technically required, but required to use the servicing or package cache/shared package install features, and to assist during roll-forward scenarios to select the newest version of any assembly that exists more than once in the application and framework(s). If the file is not present, all assemblies in the current folder are used instead.
The `MyApp.runtimeconfig.json` is designed to be user-editable (in the case of an app consumer wanting to change various CLR runtime options for an app, much like the `MyApp.exe.config` XML file works in .NET 4.x today). However, the `MyApp.deps.json` file is designed to be processed by automated tools and should not be user-edited. Having the files as separate makes this clearer. We could use a different format for the deps file, but if we're already integrating a JSON parser into the host, it seems most appropriate to re-use that here. Also, there are diagnostic benefits to being able to read the `.deps.json` file in a simple text editor.
-**IMPORTANT**: Portable Applications, i.e. those published without a specific RID, have some adjustments to this spec which is covered at the end.
+**IMPORTANT**: Framework-dependent applications have some adjustments to this spec which are covered at the end.
## File format
-The files are both JSON files stored in UTF-8 encoding. Below are sample files. Note that not all sections are required and some will be opt-in only (see below for more details). The `.runtimeconfig.json` file is completely optional, and in the `.deps.json` file, only the `runtimeTarget`, `targets` and `libraries` sections are required (and within the `targets` section, only the runtime-specific target is required).
+The files are both JSON files stored in UTF-8 encoding. Below are sample files. Note that not all sections are required and some will be opt-in only (see below for more details). The `.runtimeconfig.json` file is completely optional, and in the `.deps.json` file, only the `runtimeTarget`, `targets` and `libraries` sections are required (and within the `targets` section, only the runtime-specific target is required). If no `.deps.json` exists, all assemblies local to the app will be added as TPA (trusted platform assemblies).
### [appname].runtimeconfig.json
```json
{
"runtimeOptions": {
-
"configProperties": {
"System.GC.Server": true,
"System.GC.Concurrent": true,
"System.Threading.ThreadPool.MinThreads": 4,
"System.Threading.ThreadPool.MaxThreads": 8
},
-
"framework": {
- "name": "Microsoft.DotNetCore",
- "version": "1.0.1"
+ "name": "Microsoft.NETCore.App",
+ "version": "2.1.0"
},
-
- "applyPatches": false
+ "applyPatches": true,
+ "rollForwardOnNoCandidateFx": 1
}
}
```
@@ -46,75 +45,71 @@ The files are both JSON files stored in UTF-8 encoding. Below are sample files.
### [appname].deps.json
```json
{
- "runtimeTarget": ".NETStandardApp,Version=v1.5/osx.10.10-x64",
- "compilationOptions": {
- "defines": [ "DEBUG" ]
- },
- "targets": {
- ".NETStandardApp,Version=v1.5": {
- "MyApp/1.0": {
- "type": "project",
- "dependencies": {
- "AspNet.Mvc": "1.0.0"
- }
- },
- "System.Foo/1.0.0": {
- "type": "package",
- },
- "System.Banana/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Foo": "1.0.0"
- },
- "compile": {
- "ref/dotnet5.4/System.Banana.dll": { }
- }
- }
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v2.0",
+ "signature": "aafc507050a6c13a0cf2d6d4c3de136e6571da6e"
+ },
+ "compilationOptions": {
+ "defines": [
+ "TRACE",
+ "DEBUG"
+ ],
+ "languageVersion": "",
+ "platform": "",
+ "warningsAsErrors": false,
+ },
+ "targets": {
+ ".NETCoreApp,Version=v2.0": {
+ "MyApp/1.0.0": {
+ "dependencies": {
+ "System.Banana": "1.0.0"
},
- ".NETStandardApp,Version=v1.5/osx.10.10-x64": {
- "MyApp/1.0": {
- "type": "project",
- "dependencies": {
- "AspNet.Mvc": "1.0.0"
- }
- },
- "System.Foo/1.0.0": {
- "type": "package",
- "runtime": {
- "lib/dnxcore50/System.Foo.dll": { }
- }
- },
- "System.Banana/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Foo": "1.0.0"
- },
- "runtime": {
- "lib/dnxcore50/System.Banana.dll": { }
- },
- "resources": {
- "lib/dnxcore50/fr-FR/System.Banana.resources.dll": { "locale": "fr-FR" }
- },
- "native": {
- "runtimes/osx.10.10-x64/native/libbananahelper.dylib": { }
- }
- }
+ "runtime": {
+ "MyApp.dll": {}
}
- },
- "libraries": {
- "MyApp/1.0": {
- "type": "project"
+ },
+ "System.Banana/1.0.0": {
+ "dependencies": {
+ "System.Foo": "1.0.0"
},
- "System.Foo/1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "[base64 string]"
- },
- "System.Banana/1.0": {
- "type": "package",
- "sha512": "[base64 string]"
+ "runtime": {
+ "lib/netcoreapp2.0/System.Banana.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
}
+ },
+ "System.Foo/1.0.0": {
+ "runtime": {
+ "lib/netcoreapp2.0/System.Foo.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ }
}
+ },
+ "libraries": {
+ "MyApp/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Banana/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-C63ok7q+Fi6O6I/WB4ut3hFibGSraUlE461LxhhwNk5Vcdl4ijDhX1QDupDdp3Cxr7TgwB55Sd4zNtlwT7ksAA==",
+ "path": "system.banana/1.0.0",
+ "hashPath": "system.banana.1.0.0.nupkg.sha512"
+ },
+ "System.Foo/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-avYGOiBQ4U/fJfzEDF7lzPLhk/w6P9/28y0iiQh3AxlWOheuZTgXA/pzuORuAu/s5B2bXHO2BlvQKZN0PfQ2HQ==",
+ "path": "system.foo/1.0.0",
+ "hashPath": "system.foo.1.0.0.nupkg.sha512"
+ }
+ }
}
```
@@ -122,71 +117,29 @@ The files are both JSON files stored in UTF-8 encoding. Below are sample files.
### `runtimeOptions` Section (`.runtimeconfig.json`)
-This section is copied verbatim from an identical section in the input `project.json` file (with the exception of the `target` parameter which is generated by the compilation process). The `runtimeConfig` section specifies parameters to be provided to the runtime during initialization. Known parameters include:
+This section is created when building a project. Settings include:
* `configProperties` - Indicates configuration properties to configure the runtime and the framework
* Examples:
* Full list of [configuration properties](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/clr-configuration-knobs.md) for CoreCLR.
* `System.GC.Server` (old: `gcServer`) - Boolean indicating if the server GC should be used (Default: `true`).
* `System.GC.Concurrent` (old: `gcConcurrent`) - Boolean indicating if background garbage collection should be used.
-* `framework` - Indicates the `name`, `version`, and other properties of the shared framework to use when activating the application. The presence of this section indicates that the application is a portable app designed to use a shared redistributable framework.
-* `applyPatches` - When `false`, the framework version is strictly obeyed by the host. When `applyPatches` is unspecified or specified as `true`, the framework from either the same or a higher version that differs only in the `SemVer` patch field will be used.
+* `framework` - Indicates the `name`, `version`, and other properties of the shared framework to use when activating the application including `applyPathes` and `rollForwardOnNoCandidateFx`. The presence of this section indicates that the application is a framework-dependent app.
+* `applyPatches` - When `false`, the framework version is strictly obeyed by the host. When `applyPatches` is unspecified or `true`, the framework from either the same or a higher version that differs only by the patch field will be used.
* For example, if `version=1.0.1` and `applyPatches` is `true`, the host would load the shared framework from `1.0.{n}`, where `n >= 1`, but will not load from `1.1.0`, even if present. When `applyPatches` is `false`, the shared framework will be loaded from `1.0.1` strictly.
- * **Note:** This does not apply to `SemVer`'s `prerelease` versions, but only for `production` releases.
- * **Note:** This section will not be used for standalone applications that do not rely upon a shared framework.
+ * **Note:** This does not apply to `pre-release` versions; it applies only to `production` releases.
+ * **Note:** This section should not exist self-contained applications because they do not rely upon a shared framework.
+* `rollForwardOnNoCandidateFx` - Determines roll-forward behavior of major and minor. Only applies to `production` releases. Values: 0(Off), 1 (roll forward on [minor]), 2 (Roll forward on [major] and [minor])
+ See [roll-forward-on-no-candidate documentation](https://github.com/dotnet/core-setup/blob/master/Documentation/design-docs/roll-forward-on-no-candidate-fx.md) for more information.
-* Others _TBD_
-
-These settings are read by `corehost` to determine how to initialize the runtime. All versions of `corehost` **must ignore** settings in this section that they do not understand (thus allowing new settings to be added in later versions).
+These settings are read by host (apphost or dotnet executable) to determine how to initialize the runtime. All versions of the host **must ignore** settings in this section that they do not understand (thus allowing new settings to be added in later versions).
### `compilationOptions` Section (`.deps.json`)
-This section is copied by storing the merged `compilationOptions` from the input `project.json`. The `project.json` can define three sets of compilation options: Global, Per-Configuration, and Per-Framework. However, the `[appname].runtimeconfig.json` is specific to a configuration and framework so there is only one merged section here.
-
-The exact settings found here are specific to the compiler that produced the original application binary. Some example settings include: `defines`, `languageVersion` (C#/VB), `allowUnsafe` (C#), etc.
-
-As an example, here is a possible `project.json` file:
-
-```json
-{
- "compilationOptions": {
- "allowUnsafe": true
- },
- "frameworks": {
- "net451": {
- "compilationOptions": {
- "defines": [ "DESKTOP_CLR" ]
- }
- },
- "dnxcore50": {
- "compilationOptions": {
- "defines": [ "CORE_CLR" ]
- }
- }
- },
- "configurations": {
- "Debug": {
- "compilationOptions": {
- "defines": [ "DEBUG_MODE" ]
- }
- }
- }
-}
-```
-
-When this project is built for `dnxcore50` in the `Debug` configuration, the outputted `MyApp.deps.json` file will have the following `compilationOptions` section:
-
-```json
-{
- "compilationOptions": {
- "allowUnsafe": true,
- "defines": [ "CORE_CLR", "DEBUG_MODE" ]
- }
-}
-```
+This section is created during build from the project's settings. The exact settings found here are specific to the compiler that produced the original application binary. Some example settings include: `defines`, `languageVersion` (e.g. the version of C# or VB), `allowUnsafe` (a C# option), etc.
### `runtimeTarget` Section (`.deps.json`)
-This property contains the name of the target from `targets` that should be used by the runtime. This is present to simplify `corehost` so that it does not have to parse or understand target names and the meaning thereof.
+This property contains the name of the target from `targets` that should be used by the runtime. This is present to simplify the host so that it does not have to parse or understand target names and the meaning thereof.
### `targets` Section (`.deps.json`)
@@ -194,14 +147,10 @@ This section contains subsetted data from the input `project.lock.json`.
Each property under `targets` describes a "target", which is a collection of libraries required by the application when run or compiled in a certain framework and platform context. A target **must** specify a Framework name, and **may** specify a Runtime Identifier. Targets without Runtime Identifiers represent the dependencies and assets used for compiling the application for a particular framework. Targets with Runtime Identifiers represent the dependencies and assets used for running the application under a particular framework and on the platform defined by the Runtime Identifier. In the example above, the `.NETStandardApp,Version=v1.5` target lists the dependencies and assets used to compile the application for `dnxcore50`, and the `.NETStandardApp,Version=v1.5/osx.10.10-x64` target lists the dependencies and assets used to run the application on `dnxcore50` on a 64-bit Mac OS X 10.10 machine.
-There will always be two targets in the `[appname].runtimeconfig.json` file: A compilation target, and a runtime target. The compilation target will be named with the framework name used for the compilation (`.NETStandardApp,Version=v1.5` in the example above). The runtime target will be named with the framework name and runtime identifier used to execute the application (`.NETStandardApp,Version=v1.5/osx.10.10-x64` in the example above). However, the runtime target will also be identified by name in the `runtimeOptions` section, so that `corehost` need not parse and understand target names.
+There will always be two targets in the `[appname].runtimeconfig.json` file: A compilation target, and a runtime target. The compilation target will be named with the framework name used for the compilation (`.NETStandardApp,Version=v1.5` in the example above). The runtime target will be named with the framework name and runtime identifier used to execute the application (`.NETStandardApp,Version=v1.5/osx.10.10-x64` in the example above). However, the runtime target will also be identified by name in the `runtimeOptions` section, so that the host does not need to parse and understand target names.
The content of each target property in the JSON is a JSON object. Each property of that JSON object represents a single dependency required by the application when compiled for/run on that target. The name of the property contains the ID and Version of the dependency in the form `[Id]/[Version]`. The content of the property is another JSON object containing metadata about the dependency.
-The `type` property of a dependency object defines what kind of entity satisfied the dependency. Possible values include `project` and `package` (further comments on dependency types below).
-
-**Open Question:** `type` is also present in the `libraries` section. We don't really need it in both. It's in both now because the lock file does that and we want the formats to be similar. Should we remove it?
-
The `dependencies` property of a dependency object defines the ID and Version of direct dependencies of this node. It is a JSON object where the property names are the ID of the dependency and the content of each property is the Version of the dependency.
The `runtime` property of a dependency object lists the relative paths to Managed Assemblies required to be available at runtime in order to satisfy this dependency. The paths are relative to the location of the Dependency (see below for further details on locating a dependency).
@@ -212,7 +161,7 @@ The `native` property of a dependency object lists the relative paths to Native
In compilation targets, the `runtime`, `resources` and `native` properties of a dependency are omitted, because they are not relevant to compilation. Similarly, in runtime targets, the `compile` property is omitted, because it is not relevant to runtime.
-Only dependencies with a `type` value of `package` should be considered by `corehost`. There may be other items, used for other purposes (for example, Projects, Reference Assemblies, etc.
+Only dependencies with a `type` value of `package` should be considered by the host. There may be other items, used for other purposes (for example, Projects, Reference Assemblies, etc.
### `libraries` Section (`.deps.json`)
@@ -222,78 +171,27 @@ This section contains a union of all the dependencies found in the various targe
The file is read by two different components:
-* `corehost` uses it to determine what to place on the TPA and Native Library Search Path lists, as well as what runtime settings to apply (GC type, etc.). See [the `corehost` spec](corehost.md).
+* The host uses it to determine what to place on the TPA and Native Library Search Path lists, as well as what runtime settings to apply (GC type, etc.). See [the host spec](corehost.md).
* `Microsoft.Extensions.DependencyModel` uses it to allow a running managed application to query various data about it's dependencies. For example:
* To find all dependencies that depend on a particular package (used by ASP.NET MVC and other plugin-based systems to identify assemblies that should be searched for possible plugin implementations)
* To determine the reference assemblies used by the application when it was compiled in order to allow runtime compilation to use the same reference assemblies (used by ASP.NET Razor to compile views)
* To determine the compilation settings used by the application in order to allow runtime compilation to use the same settings (also used by ASP.NET Razor views).
-
+
## Opt-In Compilation Data
-Some of the sections in the `.deps.json` file contain data used for runtime compilation. This data is not provided in the file by default. Instead, a project.json setting `preserveCompilationContext` must be set to true in order to ensure this data is added. Without this setting, the `compilationOptions` will not be present in the file, and the `targets` section will contain only the runtime target. For example, if the `preserveCompilationContext` setting was not present in the `project.json` that generated the above example, the `.deps.json` file would only contain the following content:
+Some of the sections in the `.deps.json` file contain data used for runtime compilation. This data is not provided in the file by default. Instead, a project.json setting `preserveCompilationContext` must be set to true in order to ensure this data is added. Without this setting, the `compilationOptions` will not be present in the file, and the `targets` section will contain only the runtime target.
-```json
-{
- "runtimeTarget": {
- "name": ".NETStandardApp,Version=v1.5/osx.10.10-x64",
- "portable": false
- },
- "targets": {
- ".NETStandardApp,Version=v1.5/osx.10.10-x64": {
- "MyApp/1.0": {
- "dependencies": {
- "AspNet.Mvc": "1.0.0"
- }
- },
- "System.Foo/1.0.0": {
- "runtime": {
- "lib/dnxcore50/System.Foo.dll": { }
- }
- },
- "System.Banana/1.0.0": {
- "dependencies": {
- "System.Foo": "1.0.0"
- },
- "runtime": {
- "lib/dnxcore50/System.Banana.dll": { }
- },
- "resources": {
- "lib/dnxcore50/fr-FR/System.Banana.resources.dll": { "locale": "fr-FR" }
- },
- "native": {
- "runtimes/osx.10.10-x64/native/libbananahelper.dylib": { }
- }
- }
- }
- },
- "libraries": {
- "MyApp/1.0": {
- "type": "project"
- },
- "System.Foo/1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "[base64 string]"
- },
- "System.Banana/1.0": {
- "type": "package",
- "sha512": "[base64 string]"
- }
- }
-}
-```
+## Framework-dependent Deployment Model
-## Portable Deployment Model
+An application can be deployed in a "framework-dependent" deployment model. In this case, the RID-specific assets of packages are published within a folder structure that preserves the RID metadata. However the host does not use this folder structure, rather it reads data from the `.deps.json` file. Also, during deployment, the `.exe` file (`apphost.exe` renamed) is not deployed by default.
-An application can be deployed in a "portable" deployment model. In this case, the RID-specific assets of packages are published within a folder structure that preserves the RID metadata. However, `corehost` does not use this folder structure, rather it reads data from the `.deps.json` file. Also, during deployment, the `.exe` file (`corehost` renamed) is not deployed.
-
-In the portable deployment model, the `*.runtimeConfig.json` file will contain the `runtimeOptions.framework` section:
+In the framework-dependent deployment model, the `*.runtimeConfig.json` file will contain the `runtimeOptions.framework` section:
```json
{
"runtimeOptions": {
"framework": {
- "name": "NETCore.App",
+ "name": "Microsoft.NETCore.App",
"version": "1.0.1"
}
}
@@ -336,11 +234,11 @@ The shared framework's deps file will also contain a `runtimes` section defining
}
```
-The host will have a RID embedded in it during compilation (for example, `win10-x64` for Windows 64-bit). It will look up the corresponding entry in the `runtimes` section to identify what the fallback list is for `win10-x64`. The fallbacks are identified from most-specific to least-specific. In the case of `win10-x64` and the example above, the fallback list is: `"win10-x64", "win10", "win81-x64", "win81", "win8-x64", "win8", "win7-x64", "win7", "win-x64", "win", "any", "base"` (note that an exact match on the RID itself is the first preference, followed by the first item in the fallback list, then the next item, and so on).
+The host will detect the RID at runtime (for example, `win10-x64` for Windows 64-bit). It will look up the corresponding entry in the `runtimes` section to identify what the fallback list is for `win10-x64`. The fallbacks are identified from most-specific to least-specific. In the case of `win10-x64` and the example above, the fallback list is: `"win10-x64", "win10", "win81-x64", "win81", "win8-x64", "win8", "win7-x64", "win7", "win-x64", "win", "any", "base"` (note that an exact match on the RID itself is the first preference, followed by the first item in the fallback list, then the next item, and so on).
-In the app-local deps file for a `portable` application, the package entries may have an additional `runtimeTargets` section detailing RID-specific assets. The `corehost` application should use this data, along with the current RID and the RID fallback data defined in the `runtimes` section of the shared framework deps file to select one **and only one** RID value out of each package individually. The most specific RID present within the package should always be selected.
+In the app-local deps file for a `framework-dependent` application, the package entries may have an additional `runtimeTargets` section detailing RID-specific assets. The host should use this data, along with the current RID and the RID fallback data defined in the `runtimes` section of the shared framework deps file to select one **and only one** RID value out of each package individually. The most specific RID present within the package should always be selected.
-Consider `corehost` built for `ubuntu.14.04-x64` and the following snippet from an app-local deps file (some sections removed for brevity).
+Consider an application built for `ubuntu.14.04-x64` and the following snippet from an app-local deps file (some sections removed for brevity).
```json
{
@@ -389,3 +287,52 @@ When setting up the TPA and native library lists, it will do the following for t
Note one important aspect about asset resolution: The resolution scope is **per-package**, **not per-application**, **nor per-asset**. For each individual package, the most appropriate RID is selected, and **all** assets taken from that package must match the selected RID exactly. For example, if a package provides both a `linux-x64` and a `unix` RID (in the `ubuntu.14.04-x64` example above), **only** the `linux-x64` asset would be selected for that package. However, if a different package provides only a `unix` RID, then the asset from the `unix` RID would be selected.
The path to a runtime-specific asset is resolved in the same way as a normal asset (first check Servicing, then Package Cache, App-Local, Global Packages Location, etc.) with **one exception**. When searching app-local, rather than just looking for the simple file name in the app-local directory, a runtime-specific asset is expected to be located in a subdirectory matching the relative path information for that asset in the lock file. So the `native` `sni.dll` asset for `win7-x64` in the `System.Data.SqlClient` example above would be located at `APPROOT/runtimes/win7-x64/native/sni.dll`, rather than the normal app-local path of `APPROOT/sni.dll`.
+
+## Opt-In [appname].runtimeconfig.json Explicit Overrides for Framework Settings
+In order to address potential issues with compatibility, an application can override a framework's runtimeconfig.json settings. This should only be done with the understanding that any settings specified here have unintended consequences and may prevent future upgrade \ roll-forward compatibility. The settings include `version`, `rollForwardOnNoCandidateFx` and `applyPatches`.
+
+As an example, assume the following framework layering:
+- Application
+- Microsoft.AspNetCore.All
+- Microsoft.AspNetCore.App
+- Microsoft.NetCore.App
+
+Except for Microsoft.NetCore.App (since it does not have a lower-level framework), each layer has a runtimeconfig.json setting specifying a single lower-layer framework's `name`, `version` and optional `rollForwardOnNoCandidateFx` and `applyPatches`.
+
+The normal hierarchy processing for most knobs, such as `rollForwardOnNoCandidateFx`:
+ - a) Default value determined by the framework (e.g. roll-forward on [Minor])
+ - b) Environment variable override (e.g. `DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX`)
+ - c) Each layer's `runtimeOptions` override setting in its runtimeconfig.json, starting with app (e.g. `rollForwardOnNoCandidateFx`). Lower layers can override this.
+ - d) The app's `additionalFrameworks` override section in `[appname].runtimeconfig.json` which specifies knobs per-framework.
+ - e) A `--` command line value such as `--roll-forward-on-no-candidate-fx`
+
+In a hypothetical example, `Microsoft.AspNetCore.App` turns on the ability via mechanism `c` above to roll-forward `Microsoft.NetCore.App` on [major] releases by specifying `rollForwardOnNoCandidateFx = 2` in its runtimeconfig.json. For example:
+```json
+{
+ "runtimeOptions": {
+ "framework": {
+ "name": "Microsoft.NetCore.App",
+ "version": "2.2.0"
+ },
+ "rollForwardOnNoCandidateFx": "2"
+ }
+}
+```
+
+However, if that behavior is not wanted by the app, the app has the option of overriding. This cannot be done by the same mechanism `c` because the app's runtimeconfig settings would be overridden by the sample above since the sample is in a lower layer. Thus to override the setting, mechanism `d` is used. An example of the `additionalFrameworks` section for mechanism `d`:
+```json
+{
+ "runtimeOptions": {
+ "framework": {
+ "name": "Microsoft.AspNetCore.All",
+ "version": "1.0.1"
+ },
+ "additionalFrameworks": [
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "rollForwardOnNoCandidateFx": "1",
+ }
+ ]
+ }
+}
+```
diff --git a/README.md b/README.md
index ba014315e..02c33e210 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Looking for V1 of the .NET Core tooling?
If you are looking for the v2.0 release of the .NET Core tools (CLI, MSBuild and the new csproj), head over to https://dot.net/core and download!
-> **Note:** the release/2.1.4xx branch of the CLI repo is based on an upcoming update of the SDK and is considered pre-release. For production-level usage, please use the
+> **Note:** the release/2.2.1xx branch of the CLI repo is based on an upcoming update of the SDK and is considered pre-release. For production-level usage, please use the
> released version of the tools available at https://dot.net/core
Found an issue?
@@ -65,7 +65,7 @@ To download the .NET Core runtime **without** the SDK, visit https://github.com/
> want to install the latest released versions, check out the [preceding section](#looking-for-v1-of-the-net-core-tooling).
> In order to be able to restore these pre-release packages, you may need to add a NuGet feed pointing to https://dotnet.myget.org/F/dotnet-core/api/v3/index.json. Other feeds may also be necessary depending on what kind of project you are working with.
-| Platform | Latest Daily Build *release/2.1.4xx* [![][version-badge]][version] |
+| Platform | Latest Daily Build *release/2.2.1xx* [![][version-badge]][version] |
| -------- | :-------------------------------------: |
| **Windows x64** | [Installer][win-x64-installer] - [Checksum][win-x64-installer-checksum] [zip][win-x64-zip] - [Checksum][win-x64-zip-checksum] |
| **Windows x86** | [Installer][win-x86-installer] - [Checksum][win-x86-installer-checksum] [zip][win-x86-zip] - [Checksum][win-x86-zip-checksum] |
@@ -76,7 +76,7 @@ To download the .NET Core runtime **without** the SDK, visit https://github.com/
| **RHEL 6** | [tar.gz][rhel-6-targz] - [Checksum][rhel-6-targz-checksum] |
| **Linux-musl** | [tar.gz][linux-musl-targz] - [Checksum][linux-musl-targz-checksum] |
-| Latest Coherent Build2 *release/2.1.4xx* |
+| Latest Coherent Build2 *release/2.2.1xx* |
|:------:|
| [![][coherent-version-badge]][coherent-version] |
@@ -84,47 +84,47 @@ Reference notes:
> **1**: *Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing these directly from the .deb files (via dpkg or similar), then you'll need to install the [corresponding Host, Host FX Resolver, and Shared Framework packages](https://github.com/dotnet/core-setup#daily-builds) before installing the Sdk package.*
>
**2**: *A 'coherent' build is defined as a build where the Runtime version matches between the CLI and Asp.NET.*
-[version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/latest.version
-[coherent-version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/latest.coherent.version
+[version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/latest.version
+[coherent-version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/latest.coherent.version
[comment]: # (The latest versions are always the same across all platforms. Just need one to show, so picking win-x64's svg.)
-[version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/win_x64_Release_version_badge.svg
-[coherent-version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/win_x64_Release_coherent_badge.svg
+[version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/win_x64_Release_version_badge.svg
+[coherent-version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/win_x64_Release_coherent_badge.svg
-[win-x64-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.exe
-[win-x64-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.exe.sha
-[win-x64-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.zip
-[win-x64-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.zip.sha
+[win-x64-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.exe
+[win-x64-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.exe.sha
+[win-x64-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.zip
+[win-x64-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.zip.sha
-[win-x86-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.exe
-[win-x86-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.exe.sha
-[win-x86-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.zip
-[win-x86-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.zip.sha
+[win-x86-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.exe
+[win-x86-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.exe.sha
+[win-x86-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.zip
+[win-x86-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.zip.sha
-[osx-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.pkg
-[osx-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.pkg.sha
-[osx-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.tar.gz
-[osx-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.tar.gz.sha
+[osx-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.pkg
+[osx-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.pkg.sha
+[osx-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.tar.gz
+[osx-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.tar.gz.sha
-[linux-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-x64.tar.gz
-[linux-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-x64.tar.gz.sha
+[linux-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-x64.tar.gz
+[linux-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-x64.tar.gz.sha
-[linux-arm-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm.tar.gz
-[linux-arm-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm.tar.gz.sha
+[linux-arm-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm.tar.gz
+[linux-arm-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm.tar.gz.sha
-[linux-arm64-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm64.tar.gz
-[linux-arm64-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm64.tar.gz.sha
+[linux-arm64-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm64.tar.gz
+[linux-arm64-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm64.tar.gz.sha
-[linux-DEB-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.deb
-[linux-DEB-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.deb.sha
+[linux-DEB-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.deb
+[linux-DEB-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.deb.sha
-[linux-RPM-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.rpm
-[linux-RPM-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.rpm.sha
+[linux-RPM-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.rpm
+[linux-RPM-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.rpm.sha
-[rhel-6-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-rhel.6-x64.tar.gz
-[rhel-6-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-rhel.6-x64.tar.gz.sha
+[rhel-6-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-rhel.6-x64.tar.gz
+[rhel-6-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-rhel.6-x64.tar.gz.sha
-[linux-musl-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.3xx/dotnet-sdk-latest-linux-musl-x64.tar.gz
-[linux-musl-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.3xx/dotnet-sdk-latest-linux-musl-x64.tar.gz.sha
+[linux-musl-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-musl-x64.tar.gz
+[linux-musl-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-musl-x64.tar.gz.sha
# Debian daily feed
@@ -178,7 +178,7 @@ You can also use our Docker base images found on https://hub.docker.com/r/micros
Basic usage
-----------
-When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on the [dotnet/core repo](https://github.com/dotnet/core/tree/master/samples). You can download the sample in a directory, and then you can kick the tires of the CLI.
+When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on the [dotnet/core repo](https://github.com/dotnet/core/tree/release/2.2.1xx/samples). You can download the sample in a directory, and then you can kick the tires of the CLI.
First, you will need to restore the packages:
diff --git a/TestAssets/DesktopTestProjects/AppWithProjTool2Fx/App.csproj b/TestAssets/DesktopTestProjects/AppWithProjTool2Fx/App.csproj
index 331a6e75f..b7c3c6720 100644
--- a/TestAssets/DesktopTestProjects/AppWithProjTool2Fx/App.csproj
+++ b/TestAssets/DesktopTestProjects/AppWithProjTool2Fx/App.csproj
@@ -2,9 +2,9 @@
- netcoreapp2.1;net451
+ netcoreapp2.2;net451Exe
- $(AssetTargetFallback);portable-net45+win8;dnxcore50
+ $(AssetTargetFallback);portable-net45+win8;dnxcore50win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64$(TEST_PACKAGES)
diff --git a/TestAssets/DesktopTestProjects/MultiTFMXunitProject/XUnitProject/XUnitProject.csproj b/TestAssets/DesktopTestProjects/MultiTFMXunitProject/XUnitProject/XUnitProject.csproj
index 70844e9e1..4063c62d2 100644
--- a/TestAssets/DesktopTestProjects/MultiTFMXunitProject/XUnitProject/XUnitProject.csproj
+++ b/TestAssets/DesktopTestProjects/MultiTFMXunitProject/XUnitProject/XUnitProject.csproj
@@ -2,7 +2,7 @@
- net461;netcoreapp2.1
+ net461;netcoreapp2.2
diff --git a/TestAssets/DesktopTestProjects/NETFrameworkReferenceNETStandard20/MultiTFMTestApp/MultiTFMTestApp.csproj b/TestAssets/DesktopTestProjects/NETFrameworkReferenceNETStandard20/MultiTFMTestApp/MultiTFMTestApp.csproj
index 465f0e78a..42170c6bb 100644
--- a/TestAssets/DesktopTestProjects/NETFrameworkReferenceNETStandard20/MultiTFMTestApp/MultiTFMTestApp.csproj
+++ b/TestAssets/DesktopTestProjects/NETFrameworkReferenceNETStandard20/MultiTFMTestApp/MultiTFMTestApp.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1;net461
+ netcoreapp2.2;net461
diff --git a/TestAssets/TestPackages/ToolWithOutputName/ToolWithOutputName.csproj b/TestAssets/TestPackages/ToolWithOutputName/ToolWithOutputName.csproj
index c237cd483..9913cfd8a 100644
--- a/TestAssets/TestPackages/ToolWithOutputName/ToolWithOutputName.csproj
+++ b/TestAssets/TestPackages/ToolWithOutputName/ToolWithOutputName.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2dotnet-tool-with-output-nameToolWithOutputNameExe
diff --git a/TestAssets/TestPackages/dotnet-dependency-context-test/dotnet-dependency-context-test.csproj b/TestAssets/TestPackages/dotnet-dependency-context-test/dotnet-dependency-context-test.csproj
index 5af4b20b4..fa8676db2 100644
--- a/TestAssets/TestPackages/dotnet-dependency-context-test/dotnet-dependency-context-test.csproj
+++ b/TestAssets/TestPackages/dotnet-dependency-context-test/dotnet-dependency-context-test.csproj
@@ -3,7 +3,7 @@
1.0.0-rc
- netcoreapp2.1
+ netcoreapp2.2Exe
diff --git a/TestAssets/TestPackages/dotnet-dependency-tool-invoker/dotnet-dependency-tool-invoker.csproj b/TestAssets/TestPackages/dotnet-dependency-tool-invoker/dotnet-dependency-tool-invoker.csproj
index f625dcbe6..71975ef6f 100644
--- a/TestAssets/TestPackages/dotnet-dependency-tool-invoker/dotnet-dependency-tool-invoker.csproj
+++ b/TestAssets/TestPackages/dotnet-dependency-tool-invoker/dotnet-dependency-tool-invoker.csproj
@@ -6,7 +6,7 @@
1.0.0-rc
- netcoreapp2.1
+ netcoreapp2.2Exefalse
diff --git a/TestAssets/TestPackages/dotnet-fallbackfoldertool/dotnet-fallbackfoldertool.csproj b/TestAssets/TestPackages/dotnet-fallbackfoldertool/dotnet-fallbackfoldertool.csproj
index 9e29a16a7..3112ce34f 100644
--- a/TestAssets/TestPackages/dotnet-fallbackfoldertool/dotnet-fallbackfoldertool.csproj
+++ b/TestAssets/TestPackages/dotnet-fallbackfoldertool/dotnet-fallbackfoldertool.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2dotnet-fallbackfoldertoolExe
diff --git a/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/dotnet-hello.csproj b/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/dotnet-hello.csproj
index 4ff2b8d00..777a031cc 100644
--- a/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/dotnet-hello.csproj
+++ b/TestAssets/TestPackages/dotnet-hello/v1/dotnet-hello/dotnet-hello.csproj
@@ -5,7 +5,7 @@
1.0.0
- netcoreapp2.1
+ netcoreapp2.2dotnet-helloExewin7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64
diff --git a/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/dotnet-hello.csproj b/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/dotnet-hello.csproj
index 7e4bc54d0..6c305470a 100644
--- a/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/dotnet-hello.csproj
+++ b/TestAssets/TestPackages/dotnet-hello/v2/dotnet-hello/dotnet-hello.csproj
@@ -5,7 +5,7 @@
2.0.0
- netcoreapp2.1
+ netcoreapp2.2dotnet-helloExewin7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64
diff --git a/TestAssets/TestPackages/dotnet-portable/dotnet-portable.csproj b/TestAssets/TestPackages/dotnet-portable/dotnet-portable.csproj
index 70f8b0dde..1aef6a2d9 100644
--- a/TestAssets/TestPackages/dotnet-portable/dotnet-portable.csproj
+++ b/TestAssets/TestPackages/dotnet-portable/dotnet-portable.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe
diff --git a/TestAssets/TestPackages/dotnet-prefercliruntime/dotnet-prefercliruntime.csproj b/TestAssets/TestPackages/dotnet-prefercliruntime/dotnet-prefercliruntime.csproj
index 5275ba5fc..8706fd623 100644
--- a/TestAssets/TestPackages/dotnet-prefercliruntime/dotnet-prefercliruntime.csproj
+++ b/TestAssets/TestPackages/dotnet-prefercliruntime/dotnet-prefercliruntime.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe
diff --git a/TestAssets/TestProjects/AppWithApplicationUrlInLaunchSettings/AppWithApplicationUrlInLaunchSettings.csproj b/TestAssets/TestProjects/AppWithApplicationUrlInLaunchSettings/AppWithApplicationUrlInLaunchSettings.csproj
index be02066ff..576839f8e 100644
--- a/TestAssets/TestProjects/AppWithApplicationUrlInLaunchSettings/AppWithApplicationUrlInLaunchSettings.csproj
+++ b/TestAssets/TestProjects/AppWithApplicationUrlInLaunchSettings/AppWithApplicationUrlInLaunchSettings.csproj
@@ -3,6 +3,6 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj b/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj
index bde0adabe..d4e31136a 100644
--- a/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj
+++ b/TestAssets/TestProjects/AppWithCorruptedLaunchSettings/AppWithCorruptedLaunchSettings.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64
diff --git a/TestAssets/TestProjects/AppWithDepOnToolWithOutputName/AppWithDepOnToolWithOutputName.csproj b/TestAssets/TestProjects/AppWithDepOnToolWithOutputName/AppWithDepOnToolWithOutputName.csproj
index 4ea5be23c..3bbb28817 100755
--- a/TestAssets/TestProjects/AppWithDepOnToolWithOutputName/AppWithDepOnToolWithOutputName.csproj
+++ b/TestAssets/TestProjects/AppWithDepOnToolWithOutputName/AppWithDepOnToolWithOutputName.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/AppWithDirectAndToolDep/AppWithDirectAndToolDep.csproj b/TestAssets/TestProjects/AppWithDirectAndToolDep/AppWithDirectAndToolDep.csproj
index afcfb340e..99e82e3e5 100755
--- a/TestAssets/TestProjects/AppWithDirectAndToolDep/AppWithDirectAndToolDep.csproj
+++ b/TestAssets/TestProjects/AppWithDirectAndToolDep/AppWithDirectAndToolDep.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/AppWithDirectDep/AppWithDirectDep.csproj b/TestAssets/TestProjects/AppWithDirectDep/AppWithDirectDep.csproj
index 5b5c0f757..1818cdb1a 100755
--- a/TestAssets/TestProjects/AppWithDirectDep/AppWithDirectDep.csproj
+++ b/TestAssets/TestProjects/AppWithDirectDep/AppWithDirectDep.csproj
@@ -3,7 +3,7 @@
1.0.0
- netcoreapp2.1
+ netcoreapp2.2AppWithDirectDepExefalse
diff --git a/TestAssets/TestProjects/AppWithDirectDepWithOutputName/AppWithDirectDepWithOutputName.csproj b/TestAssets/TestProjects/AppWithDirectDepWithOutputName/AppWithDirectDepWithOutputName.csproj
index 4eef16036..216b6a543 100755
--- a/TestAssets/TestProjects/AppWithDirectDepWithOutputName/AppWithDirectDepWithOutputName.csproj
+++ b/TestAssets/TestProjects/AppWithDirectDepWithOutputName/AppWithDirectDepWithOutputName.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/AppWithFallbackFolderToolDependency/AppWithFallbackFolderToolDependency.csproj b/TestAssets/TestProjects/AppWithFallbackFolderToolDependency/AppWithFallbackFolderToolDependency.csproj
index 76195b1ca..5701923a5 100755
--- a/TestAssets/TestProjects/AppWithFallbackFolderToolDependency/AppWithFallbackFolderToolDependency.csproj
+++ b/TestAssets/TestProjects/AppWithFallbackFolderToolDependency/AppWithFallbackFolderToolDependency.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj b/TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj
index bde0adabe..d4e31136a 100644
--- a/TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj
+++ b/TestAssets/TestProjects/AppWithLaunchSettings/AppWithLaunchSettings.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64
diff --git a/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj b/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj
index bde0adabe..d4e31136a 100644
--- a/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj
+++ b/TestAssets/TestProjects/AppWithLaunchSettingsNoDefault/AppWithLaunchSettingsNoDefault.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64
diff --git a/TestAssets/TestProjects/AppWithMultipleFxAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj b/TestAssets/TestProjects/AppWithMultipleFxAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
index 4aeb0de85..9986f54fc 100644
--- a/TestAssets/TestProjects/AppWithMultipleFxAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
+++ b/TestAssets/TestProjects/AppWithMultipleFxAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
@@ -3,7 +3,7 @@
Exe
- net451;netcoreapp2.1
+ net451;netcoreapp2.2$(TEST_PACKAGES)
@@ -11,7 +11,7 @@
-
+
diff --git a/TestAssets/TestProjects/AppWithToolDependency/AppWithToolDependency.csproj b/TestAssets/TestProjects/AppWithToolDependency/AppWithToolDependency.csproj
index a18ee9852..945c59f44 100755
--- a/TestAssets/TestProjects/AppWithToolDependency/AppWithToolDependency.csproj
+++ b/TestAssets/TestProjects/AppWithToolDependency/AppWithToolDependency.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/DependencyContextFromTool/DependencyContextFromTool.csproj b/TestAssets/TestProjects/DependencyContextFromTool/DependencyContextFromTool.csproj
index 2de1535e2..d2949d134 100755
--- a/TestAssets/TestProjects/DependencyContextFromTool/DependencyContextFromTool.csproj
+++ b/TestAssets/TestProjects/DependencyContextFromTool/DependencyContextFromTool.csproj
@@ -3,7 +3,7 @@
1.0.0
- netcoreapp2.1
+ netcoreapp2.2DependencyContextFromToolExefalse
diff --git a/TestAssets/TestProjects/FSharpTestAppSimple/TestAppSimple.fsproj b/TestAssets/TestProjects/FSharpTestAppSimple/TestAppSimple.fsproj
index 7c81fcb9c..bd7fe7deb 100644
--- a/TestAssets/TestProjects/FSharpTestAppSimple/TestAppSimple.fsproj
+++ b/TestAssets/TestProjects/FSharpTestAppSimple/TestAppSimple.fsproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exetrue
diff --git a/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworks/MSBuildAppWithMultipleFrameworks.csproj b/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworks/MSBuildAppWithMultipleFrameworks.csproj
index 4ef98259b..49785ea14 100644
--- a/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworks/MSBuildAppWithMultipleFrameworks.csproj
+++ b/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworks/MSBuildAppWithMultipleFrameworks.csproj
@@ -3,7 +3,7 @@
Exe
- net451;netcoreapp2.1
+ net451;netcoreapp2.2
\ No newline at end of file
diff --git a/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworksAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj b/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworksAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
index 276e1c618..3cad5f8ab 100644
--- a/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworksAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
+++ b/TestAssets/TestProjects/MSBuildAppWithMultipleFrameworksAndTools/MSBuildAppWithMultipleFrameworksAndTools.csproj
@@ -3,14 +3,14 @@
Exe
- net451;netcoreapp2.1
+ net451;netcoreapp2.2
-
+
diff --git a/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj b/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
index de20e4481..89540778e 100644
--- a/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
+++ b/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/MultiDependentProject/MultiDependentProject.csproj b/TestAssets/TestProjects/MultiDependentProject/MultiDependentProject.csproj
index 9d52a2484..b70e9cd58 100644
--- a/TestAssets/TestProjects/MultiDependentProject/MultiDependentProject.csproj
+++ b/TestAssets/TestProjects/MultiDependentProject/MultiDependentProject.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/NewtonSoftDependentProject/NewtonSoftDependentProject.csproj b/TestAssets/TestProjects/NewtonSoftDependentProject/NewtonSoftDependentProject.csproj
index cff7d9c45..c33c5b112 100644
--- a/TestAssets/TestProjects/NewtonSoftDependentProject/NewtonSoftDependentProject.csproj
+++ b/TestAssets/TestProjects/NewtonSoftDependentProject/NewtonSoftDependentProject.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/NuGetConfigDependentProject/NuGetConfigDependentProject.csproj b/TestAssets/TestProjects/NuGetConfigDependentProject/NuGetConfigDependentProject.csproj
index 340e58180..ab48b8ed6 100644
--- a/TestAssets/TestProjects/NuGetConfigDependentProject/NuGetConfigDependentProject.csproj
+++ b/TestAssets/TestProjects/NuGetConfigDependentProject/NuGetConfigDependentProject.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/SlnFileWithNoProjectReferencesAndFSharpProject/FSharpProject/FSharpProject.fsproj b/TestAssets/TestProjects/SlnFileWithNoProjectReferencesAndFSharpProject/FSharpProject/FSharpProject.fsproj
index 43b200bd5..77e0646a6 100644
--- a/TestAssets/TestProjects/SlnFileWithNoProjectReferencesAndFSharpProject/FSharpProject/FSharpProject.fsproj
+++ b/TestAssets/TestProjects/SlnFileWithNoProjectReferencesAndFSharpProject/FSharpProject/FSharpProject.fsproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppSimple/TestAppSimple.csproj b/TestAssets/TestProjects/TestAppSimple/TestAppSimple.csproj
index 9c5f2a885..7f72f6294 100755
--- a/TestAssets/TestProjects/TestAppSimple/TestAppSimple.csproj
+++ b/TestAssets/TestProjects/TestAppSimple/TestAppSimple.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2Exe
\ No newline at end of file
diff --git a/TestAssets/TestProjects/TestAppWithEmptySln/App/App.csproj b/TestAssets/TestProjects/TestAppWithEmptySln/App/App.csproj
index cefcb0402..683a2bf14 100644
--- a/TestAssets/TestProjects/TestAppWithEmptySln/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithEmptySln/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithMultipleSlnFiles/App/App.csproj b/TestAssets/TestProjects/TestAppWithMultipleSlnFiles/App/App.csproj
index d466f76c6..7eae8fc04 100644
--- a/TestAssets/TestProjects/TestAppWithMultipleSlnFiles/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithMultipleSlnFiles/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithProjDepTool/TestAppWithProjDepTool.csproj b/TestAssets/TestProjects/TestAppWithProjDepTool/TestAppWithProjDepTool.csproj
index b4e6c9844..71c0021d7 100644
--- a/TestAssets/TestProjects/TestAppWithProjDepTool/TestAppWithProjDepTool.csproj
+++ b/TestAssets/TestProjects/TestAppWithProjDepTool/TestAppWithProjDepTool.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2$(TEST_PACKAGES)
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCaseSensitiveSolutionFolders/src/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCaseSensitiveSolutionFolders/src/App/App.csproj
index 264eddb85..2c41925b8 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCaseSensitiveSolutionFolders/src/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCaseSensitiveSolutionFolders/src/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCsprojFiles/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCsprojFiles/App/App.csproj
index cefcb0402..683a2bf14 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCsprojFiles/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCsprojFiles/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDir/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDir/App.csproj
index d02e1c64b..7d85a48e1 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDir/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDir/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDirToRemove/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDirToRemove/App.csproj
index 653032148..73ff8c948 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDirToRemove/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCsprojInSubDirToRemove/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCsprojProjectGuidFiles/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCsprojProjectGuidFiles/App/App.csproj
index cefcb0402..683a2bf14 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCsprojProjectGuidFiles/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCsprojProjectGuidFiles/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndCsprojToRemove/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndCsprojToRemove/App/App.csproj
index d466f76c6..7eae8fc04 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndCsprojToRemove/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndCsprojToRemove/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndDuplicateProjectReferences/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndDuplicateProjectReferences/App/App.csproj
index cefcb0402..683a2bf14 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndDuplicateProjectReferences/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndDuplicateProjectReferences/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferences/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferences/App/App.csproj
index 867909f5d..ea3bd4c8a 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferences/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferences/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferencesWithEscapedDirSep/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferencesWithEscapedDirSep/App/App.csproj
index 867909f5d..ea3bd4c8a 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferencesWithEscapedDirSep/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndExistingCsprojReferencesWithEscapedDirSep/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndLastCsprojInSubDirToRemove/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndLastCsprojInSubDirToRemove/App.csproj
index 653032148..73ff8c948 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndLastCsprojInSubDirToRemove/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndLastCsprojInSubDirToRemove/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestAppWithSlnAndSolutionFolders/src/App/App.csproj b/TestAssets/TestProjects/TestAppWithSlnAndSolutionFolders/src/App/App.csproj
index 264eddb85..2c41925b8 100644
--- a/TestAssets/TestProjects/TestAppWithSlnAndSolutionFolders/src/App/App.csproj
+++ b/TestAssets/TestProjects/TestAppWithSlnAndSolutionFolders/src/App/App.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/TestWebAppSimple/TestWebAppSimple.csproj b/TestAssets/TestProjects/TestWebAppSimple/TestWebAppSimple.csproj
index f600e9d8e..0d5ffc364 100644
--- a/TestAssets/TestProjects/TestWebAppSimple/TestWebAppSimple.csproj
+++ b/TestAssets/TestProjects/TestWebAppSimple/TestWebAppSimple.csproj
@@ -2,7 +2,7 @@
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/VBTestApp/VBTestApp.vbproj b/TestAssets/TestProjects/VBTestApp/VBTestApp.vbproj
index 23df6047f..21dff5ca2 100644
--- a/TestAssets/TestProjects/VBTestApp/VBTestApp.vbproj
+++ b/TestAssets/TestProjects/VBTestApp/VBTestApp.vbproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/VSTestCore/VSTestCore.csproj b/TestAssets/TestProjects/VSTestCore/VSTestCore.csproj
index 26592bc1d..ac1e26e32 100644
--- a/TestAssets/TestProjects/VSTestCore/VSTestCore.csproj
+++ b/TestAssets/TestProjects/VSTestCore/VSTestCore.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/VSTestMulti/VSTestDesktopAndNetCore.csproj b/TestAssets/TestProjects/VSTestMulti/VSTestDesktopAndNetCore.csproj
index 2b2cc7769..eab18393e 100644
--- a/TestAssets/TestProjects/VSTestMulti/VSTestDesktopAndNetCore.csproj
+++ b/TestAssets/TestProjects/VSTestMulti/VSTestDesktopAndNetCore.csproj
@@ -2,7 +2,7 @@
- net46;netcoreapp2.1
+ net46;netcoreapp2.2
diff --git a/TestAssets/TestProjects/XunitCore/XunitCore.csproj b/TestAssets/TestProjects/XunitCore/XunitCore.csproj
index 84a3da759..3e750f58a 100644
--- a/TestAssets/TestProjects/XunitCore/XunitCore.csproj
+++ b/TestAssets/TestProjects/XunitCore/XunitCore.csproj
@@ -3,7 +3,7 @@
Exe
- netcoreapp2.1
+ netcoreapp2.2
diff --git a/TestAssets/TestProjects/XunitMulti/VSTestXunitDesktopAndNetCore.csproj b/TestAssets/TestProjects/XunitMulti/VSTestXunitDesktopAndNetCore.csproj
index 4534df62b..c678d6b4a 100644
--- a/TestAssets/TestProjects/XunitMulti/VSTestXunitDesktopAndNetCore.csproj
+++ b/TestAssets/TestProjects/XunitMulti/VSTestXunitDesktopAndNetCore.csproj
@@ -2,7 +2,7 @@
- net46;netcoreapp2.1
+ net46;netcoreapp2.2win7-x86win7-x86
@@ -11,7 +11,7 @@
DESKTOP;$(DefineConstants)
-
+
diff --git a/build/BranchInfo.props b/build/BranchInfo.props
index c7a84c19d..e666ebd65 100644
--- a/build/BranchInfo.props
+++ b/build/BranchInfo.props
@@ -1,6 +1,6 @@
- release/2.1.4xx
- release/2.1.4xx
+ release/2.2.1xx
+ release/2.2.1xx
diff --git a/build/BundledTemplates.props b/build/BundledTemplates.props
index c38a969a4..108e19f92 100644
--- a/build/BundledTemplates.props
+++ b/build/BundledTemplates.props
@@ -5,7 +5,7 @@
-
+
diff --git a/build/CrossGen.props b/build/CrossGen.props
index 6a5907629..355405b36 100644
--- a/build/CrossGen.props
+++ b/build/CrossGen.props
@@ -1,8 +1,11 @@
runtime.$(SharedFrameworkRid).microsoft.netcore.app
- $(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/tools/crossgen$(ExeExtension)
- $(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/runtimes/$(SharedFrameworkRid)/native/$(DynamicLibPrefix)clrjit$(DynamicLibExtension)
+ <_crossDir Condition="'$(Architecture)' == 'arm64'">/x64_arm64
+ $(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/tools$(_crossDir)/crossgen$(ExeExtension)
+ $(SharedFrameworkRid)
+ x64_arm64
+ $(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/runtimes/$(LibCLRJitRid)/native/$(DynamicLibPrefix)clrjit$(DynamicLibExtension)$(OutputDirectory)/shared/$(SharedFrameworkName)/$(MicrosoftNETCoreAppPackageVersion)
diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props
index 6f54fa099..49bfc555a 100644
--- a/build/DependencyVersions.props
+++ b/build/DependencyVersions.props
@@ -1,7 +1,7 @@
- 2.1.1
+ 2.2.0-preview1-34355$(MicrosoftAspNetCoreAllPackageVersion)2.1.12.1.1
@@ -10,7 +10,7 @@
2.1.12.1.12.1.1
- 2.1.1
+ 2.2.0-preview1-26609-02$(MicrosoftNETCoreAppPackageVersion)15.8.0-preview-000138$(MicrosoftBuildPackageVersion)
@@ -18,12 +18,12 @@
$(MicrosoftBuildPackageVersion)$(MicrosoftBuildPackageVersion)10.2.0-rtm-180620-0
- 2.8.1-beta6-62915-07
+ 2.8.3-beta6-62923-07$(MicrosoftCodeAnalysisCSharpPackageVersion)$(MicrosoftCodeAnalysisCSharpPackageVersion)$(MicrosoftCodeAnalysisCSharpPackageVersion)$(MicrosoftCodeAnalysisCSharpPackageVersion)
- 2.1.400-preview-63027-01
+ 1.0.0-preview1-62924-06$(MicrosoftNETSdkPackageVersion)$(MicrosoftAspNetCoreAppPackageVersion)2.1.400-preview1-20180614-1774926
@@ -37,8 +37,8 @@
$(MicrosoftTemplateEngineCliPackageVersion)$(MicrosoftTemplateEngineCliPackageVersion)$(MicrosoftTemplateEngineCliPackageVersion)
- 2.1.0
- 2.1.0
+ 2.2.0-preview1-26609-02
+ 2.2.0-preview1-26609-020.1.11.3.1$(MicrosoftDotNetProjectJsonMigrationPackageVersion)
diff --git a/build/NugetConfigFile.targets b/build/NugetConfigFile.targets
index d7dffd6b0..adb6c3529 100644
--- a/build/NugetConfigFile.targets
+++ b/build/NugetConfigFile.targets
@@ -19,7 +19,9 @@
+
+
diff --git a/build/OutputDirectories.props b/build/OutputDirectories.props
index b5d26d549..fb3960228 100644
--- a/build/OutputDirectories.props
+++ b/build/OutputDirectories.props
@@ -17,7 +17,7 @@
$(SdkOutputDirectory)/Roslyn$(SdkOutputDirectory)/FSharp$(BaseOutputDirectory)/compilation
- $(BaseOutputDirectory)/intermediate
+ $(BaseOutputDirectory)/int$(BaseOutputDirectory)/packages$(IntermediateDirectory)/sharedFrameworkPublish$(IntermediateDirectory)/aspnetSharedFxPublish
diff --git a/build/Signing.proj b/build/Signing.proj
index f77406db0..0823bb62e 100644
--- a/build/Signing.proj
+++ b/build/Signing.proj
@@ -22,12 +22,12 @@
- $(BaseOutputDirectory)/intermediate/MSBuildExtensionsLayout/MSBuildSdkResolver
+ $(IntermediateDirectory)/MSBuildExtensionsLayout/MSBuildSdkResolver$(BaseOutputDirectory)
- $(BaseOutputDirectory)/intermediate
+ $(IntermediateDirectory)
diff --git a/build/Version.props b/build/Version.props
index cde7dcc9d..960b03aff 100644
--- a/build/Version.props
+++ b/build/Version.props
@@ -1,9 +1,9 @@
2
- 1
- 400
- preview
+ 2
+ 100
+ preview1$(VersionMajor).$(VersionMinor)$(VersionMajor).$(VersionMinor).$(VersionPatch)
diff --git a/packaging/windows/clisdk/generatenupkg.ps1 b/packaging/windows/clisdk/generatenupkg.ps1
index ca91f2e3a..f2df9810d 100644
--- a/packaging/windows/clisdk/generatenupkg.ps1
+++ b/packaging/windows/clisdk/generatenupkg.ps1
@@ -26,7 +26,7 @@ function DownloadNugetExe
if (-not (Test-Path $NuGetExe)) {
Write-Output 'Downloading nuget.exe to ' + $NuGetExe
- wget https://dist.nuget.org/win-x86-commandline/v3.5.0-rc1/NuGet.exe -OutFile $NuGetExe
+ wget https://dist.nuget.org/win-x86-commandline/v4.7.0/nuget.exe -OutFile $NuGetExe
}
}
diff --git a/scripts/obtain/dotnet-install.ps1 b/scripts/obtain/dotnet-install.ps1
index 5bfd355eb..14ebe11af 100644
--- a/scripts/obtain/dotnet-install.ps1
+++ b/scripts/obtain/dotnet-install.ps1
@@ -73,6 +73,8 @@
.PARAMETER SkipNonVersionedFiles
Default: false
Skips installing non-versioned files if they already exist, such as dotnet.exe.
+.PARAMETER NoCdn
+ Disable downloading from the Azure CDN, and use the uncached feed directly.
#>
[cmdletbinding()]
param(
@@ -91,13 +93,18 @@ param(
[string]$FeedCredential,
[string]$ProxyAddress,
[switch]$ProxyUseDefaultCredentials,
- [switch]$SkipNonVersionedFiles
+ [switch]$SkipNonVersionedFiles,
+ [switch]$NoCdn
)
Set-StrictMode -Version Latest
$ErrorActionPreference="Stop"
$ProgressPreference="SilentlyContinue"
+if ($NoCdn) {
+ $AzureFeed = $UncachedFeed
+}
+
$BinFolderRelativePath=""
if ($SharedRuntime -and (-not $Runtime)) {
@@ -461,6 +468,12 @@ function Extract-Dotnet-Package([string]$ZipPath, [string]$OutPath) {
}
function DownloadFile([Uri]$Uri, [string]$OutPath) {
+ if ($Uri -notlike "http*") {
+ Say-Verbose "Copying file from $Uri to $OutPath"
+ Copy-Item $Uri.AbsolutePath $OutPath
+ return
+ }
+
$Stream = $null
try {
diff --git a/scripts/obtain/dotnet-install.sh b/scripts/obtain/dotnet-install.sh
index 588d32814..0d4307072 100755
--- a/scripts/obtain/dotnet-install.sh
+++ b/scripts/obtain/dotnet-install.sh
@@ -75,16 +75,24 @@ get_legacy_os_name_from_platform() {
echo "debian"
return 0
;;
+ "debian.9")
+ echo "debian.9"
+ return 0
+ ;;
"fedora.23")
echo "fedora.23"
return 0
;;
+ "fedora.24")
+ echo "fedora.24"
+ return 0
+ ;;
"fedora.27")
echo "fedora.27"
return 0
;;
- "fedora.24")
- echo "fedora.24"
+ "fedora.28")
+ echo "fedora.28"
return 0
;;
"opensuse.13.2")
@@ -628,7 +636,7 @@ extract_dotnet_package() {
tar -xzf "$zip_path" -C "$temp_out_path" > /dev/null || failed=true
local folders_with_version_regex='^.*/[0-9]+\.[0-9]+[^/]+/'
- find "$temp_out_path" -type f | grep -Eo "$folders_with_version_regex" | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" false
+ find "$temp_out_path" -type f | grep -Eo "$folders_with_version_regex" | sort | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" false
find "$temp_out_path" -type f | grep -Ev "$folders_with_version_regex" | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" "$override_non_versioned_files"
rm -rf "$temp_out_path"
@@ -648,6 +656,11 @@ download() {
local remote_path="$1"
local out_path="${2:-}"
+ if [[ "$remote_path" != "http"* ]]; then
+ cp "$remote_path" "$out_path"
+ return $?
+ fi
+
local failed=false
if machine_has "curl"; then
downloadcurl "$remote_path" "$out_path" || failed=true
@@ -811,6 +824,7 @@ install_dir=""
architecture=""
dry_run=false
no_path=false
+no_cdn=false
azure_feed="https://dotnetcli.azureedge.net/dotnet"
uncached_feed="https://dotnetcli.blob.core.windows.net/dotnet"
feed_credential=""
@@ -862,6 +876,9 @@ do
--verbose|-[Vv]erbose)
verbose=true
;;
+ --no-cdn|-[Nn]o[Cc]dn)
+ no_cdn=true
+ ;;
--azure-feed|-[Aa]zure[Ff]eed)
shift
azure_feed="$1"
@@ -924,6 +941,7 @@ do
echo " --verbose,-Verbose Display diagnostics information."
echo " --azure-feed,-AzureFeed Azure feed location. Defaults to $azure_feed, This parameter typically is not changed by the user."
echo " --uncached-feed,-UncachedFeed Uncached feed location. This parameter typically is not changed by the user."
+ echo " --no-cdn,-NoCdn Disable downloading from the Azure CDN, and use the uncached feed directly."
echo " --feed-credential,-FeedCredential Azure feed shared access token. This parameter typically is not specified."
echo " --runtime-id Installs the .NET Tools for the given platform (use linux-x64 for portable linux)."
echo " -RuntimeId"
@@ -949,6 +967,10 @@ do
shift
done
+if [ "$no_cdn" = true ]; then
+ azure_feed="$uncached_feed"
+fi
+
check_min_reqs
calculate_vars
diff --git a/scripts/register-completions.bash b/scripts/register-completions.bash
index b4753def3..09d167bd2 100644
--- a/scripts/register-completions.bash
+++ b/scripts/register-completions.bash
@@ -1,14 +1,12 @@
-#!/bin/bash
# bash parameter completion for the dotnet CLI
_dotnet_bash_complete()
{
local word=${COMP_WORDS[COMP_CWORD]}
- local dotnetPath=${COMP_WORDS[1]}
local completions=("$(dotnet complete --position ${COMP_POINT} "${COMP_LINE}")")
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
}
-complete -f -F _dotnet_bash_complete dotnet
\ No newline at end of file
+complete -f -F _dotnet_bash_complete dotnet
diff --git a/scripts/register-completions.zsh b/scripts/register-completions.zsh
index 9f290bc68..8eebe9a86 100644
--- a/scripts/register-completions.zsh
+++ b/scripts/register-completions.zsh
@@ -2,11 +2,9 @@
_dotnet_zsh_complete()
{
- local dotnetPath=$words[1]
-
local completions=("$(dotnet complete "$words")")
reply=( "${(ps:\n:)completions}" )
}
-compctl -K _dotnet_zsh_complete dotnet
\ No newline at end of file
+compctl -K _dotnet_zsh_complete dotnet
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.cs.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.cs.xlf
index 643ec0b2a..fe16ef1aa 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.cs.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.cs.xlf
@@ -64,10 +64,10 @@ Tuto chybu můžete opravit pomocí některé z těchto možností:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
Úspěšně se podařilo nainstalovat certifikát pro vývoj ASP.NET Core HTTPS Development Certificate.
-Pokud chcete certifikátu důvěřovat (platí jenom pro Windows a macOS), nainstalujte nejprve nástroj dev-certs. To uděláte tak, že spustíte dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final a potom dotnet-dev-certs https --trust.
+Pokud chcete certifikátu důvěřovat, spusťte dotnet dev-certs https --trust (platí jenom pro Windows a macOS). Informace o vytvoření vztahu důvěryhodnosti na jiných platformách najdete v dokumentaci k příslušné platformě.
Další informace o konfiguraci protokolu HTTPS najdete na webu https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.de.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.de.xlf
index 53c8f9797..a8e81f79f 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.de.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.de.xlf
@@ -64,10 +64,10 @@ Im Folgenden finden Sie einige Optionen, um diesen Fehler zu beheben:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
Das ASP.NET Core-HTTPS-Entwicklungszertifikat wurde erfolgreich installiert.
-Um dem Zertifikat zu vertrauen (nur Windows und macOS), installieren Sie zuerst das Tool "dev-certs", indem Sie "dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final" und anschließend "dotnet-dev-certs https --trust" ausführen.
+Um dem Zertifikat zu vertrauen, führen Sie "dotnet dev-certs https --trust" aus (nur Windows und macOS). Informationen zum Einrichten einer Vertrauensstellung auf anderen Plattformen finden Sie in der Dokumentation zur jeweiligen Plattform.
Weitere Informationen zur Konfiguration von HTTPS finden Sie unter https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.es.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.es.xlf
index 5ea2db5f1..eefef2b93 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.es.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.es.xlf
@@ -63,10 +63,10 @@ Estas son algunas opciones para corregir este error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
El certificado de desarrollo HTTPS de ASP.NET Core se ha instalado correctamente.
-Para confiar en el certificado (solo Windows y macOS), instale primero la herramienta dev-certs ejecutando "dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final" y, después, ejecute "dotnet-dev-certs https --trust".
+Para confiar en el certificado, ejecute "dotnet dev-certs https --trust (solo Windows y macOS). Para establecer la confianza en otras plataformas, consulte la documentación específica de la plataforma.
Para obtener más información sobre la configuración HTTPS, vea https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.fr.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.fr.xlf
index 43d294ca5..2ccd26dd9 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.fr.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.fr.xlf
@@ -64,10 +64,10 @@ Voici quelques options pour corriger cette erreur :
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
Installation réussie du certificat de développement HTTPS ASP.NET Core.
-Pour approuver le certificat (Windows et macOS uniquement), installez d'abord l'outil dev-certs en exécutant 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final', puis exécutez 'dotnet-dev-certs https --trust'.
+Pour approuver le certificat, exécutez 'dotnet dev-certs https --trust' (Windows et macOS uniquement). Pour établir une relation d'approbation sur d'autres plateformes, consultez la documentation spécifique à la plateforme.
Pour plus d'informations sur la configuration du protocole HTTPS, consultez https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.it.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.it.xlf
index 61e2fb159..95c70bef2 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.it.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.it.xlf
@@ -64,10 +64,10 @@ Ecco alcune opzioni per correggere questo errore:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
-------------
+ ASP.NET Core
+--------------
Il certificato di sviluppo HTTPS di ASP.NET Core è stato installato.
-Per considerare attendibile il certificato (solo Windows e macOS), installare prima lo strumento dev-certs eseguendo 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final' e quindi eseguire 'dotnet-dev-certs https --trust'.
+Per considerare attendibile il certificato, eseguire 'dotnet dev-certs https --trust' (solo per Windows e macOS). Per l'attendibilità su altre piattaforme, fare riferimento alla documentazione specifica della piattaforma.
Per altre informazioni sulla configurazione di HTTPS, vedere https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ja.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ja.xlf
index 508a991db..01685d60d 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ja.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ja.xlf
@@ -64,10 +64,10 @@ Here are some options to fix this error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
ASP.NET Core HTTPS 開発証明書が正常にインストールされました。
-証明書を信頼する (Windows および macOS のみ) には、まず 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final' を実行して dev-certs ツールをインストールし、次に 'dotnet-dev-certs https --trust' を実行します。
+証明書を信頼するには、'dotnet dev-certs https --trust' (Windows および macOS のみ) を実行します。その他のプラットフォームで信頼を確立するには、プラットフォーム固有のドキュメントをご覧ください。
HTTPS を構成する方法の詳細については、https://go.microsoft.com/fwlink/?linkid=848054 をご覧ください。
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ko.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ko.xlf
index 04956ad71..07764e602 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ko.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ko.xlf
@@ -64,10 +64,10 @@ Here are some options to fix this error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
ASP.NET Core HTTPS 개발 인증서를 설치했습니다.
-인증서를 신뢰하려면(Windows 및 macOS만 해당) 먼저 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final'을 실행하여 dev-certs 도구를 설치한 다음, 'dotnet-dev-certs https --trust'를 실행하세요.
+인증서를 신뢰하려면 'dotnet dev-certs https --trust'(Windows 및 macOS만)를 실행합니다. 다른 플랫폼에서 신뢰를 설정하는 방법에 대해서는 플랫폼별 설명서를 참조하세요.
HTTPS 구성에 대한 자세한 내용은 https://go.microsoft.com/fwlink/?linkid=848054를 참조하세요.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pl.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pl.xlf
index e7b32caa2..56db75086 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pl.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pl.xlf
@@ -64,11 +64,11 @@ Oto kilka opcji naprawiania tego błędu:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
Pomyślnie zainstalowano certyfikat deweloperski protokołu HTTPS programu ASP.NET Core.
-Aby ufać temu certyfikatowi (dotyczy tylko systemów Windows i macOS), najpierw zainstaluj narzędzie dev-certs, uruchamiając polecenie „dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final”, a następnie uruchom polecenie „dotnet-dev-certs https --trust”.
-Aby uzyskać więcej informacji dotyczących konfigurowania protokołu HTTPS, zobacz https://go.microsoft.com/fwlink/?linkid=848054.
+Aby ufać temu certyfikatowi, uruchom polecenie „dotnet dev-certs https --trust” (dotyczy tylko systemów Windows i macOS). Aby nawiązać relację zaufania na innych platformach, zapoznaj się z dokumentacją specyficzną dla danej platformy.
+Aby uzyskać więcej informacji na temat konfigurowania protokołu HTTPS, zobacz https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pt-BR.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pt-BR.xlf
index 5ba9e7dd6..8ccec6cc1 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.pt-BR.xlf
@@ -64,11 +64,11 @@ Aqui estão algumas opções para corrigir este erro:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
-Certificado de Desenvolvimento HTTPS ASP.NET Core instalado com êxito.
-Para confiar no certificado (apenas Windows e macOS), primeiramente instale a ferramenta dev-certs executando 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final' e, em seguida, execute 'dotnet-dev-certs https --trust'.
-Para saber mais sobre a configuração de HTTPS, acesse https://go.microsoft.com/fwlink/?linkid=848054.
+O certificado de desenvolvimento HTTPS do ASP.NET Core foi instalado com êxito.
+Para confiar no certificado, execute 'dotnet dev-certs https --trust' (somente Windows e macOS). Para estabelecer a confiança em outras plataformas, consulte a documentação específica da plataforma.
+Para obter mais informações de como configurar HTTPS, confira https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ru.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ru.xlf
index 363accf1b..9f2b28848 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ru.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.ru.xlf
@@ -64,10 +64,10 @@ Here are some options to fix this error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
Сертификат разработки HTTPS для ASP.NET Core установлен.
-Чтобы сделать сертификат доверенным (только Windows и macOS), сначала установите инструмент dev-certs, выполнив команду "dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final", а затем выполните "dotnet-dev-certs https --trust".
+Чтобы сделать сертификат доверенным, выполните команду dotnet dev-certs https --trust (только для Windows и macOS). Чтобы сделать сертификат доверенным на других платформах, обратитесь к документации по этим платформам.
Дополнительные сведения о настройке HTTPS: https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.tr.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.tr.xlf
index 95c96b45f..06caf522b 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.tr.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.tr.xlf
@@ -64,11 +64,11 @@ Bu hatayı düzeltmek için bazı seçenekler:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
ASP.NET Core HTTPS Geliştirme Sertifikası başarıyla yüklendi.
-Sertifikaya güvenmek için (yalnızca Windows ve macOS) önce 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final', sonra 'dotnet-dev-certs https --trust' komutlarını çalıştırarak dev-certs aracını yükleyin.
-HTTPS yapılandırması hakkında daha fazla bilgi için bkz. https://go.microsoft.com/fwlink/?linkid=848054.
+Sertifikaya güvenmek için 'dotnet dev-certs https --trust' komutunu çalıştırın (yalnızca Windows ve macOS). Diğer platformlarda güven ilişkisini oluşturmak için ilgili platforma özgü belgelere başvurun.
+HTTPS yapılandırması hakkında daha fazla bilgi edinmek için bkz. https://go.microsoft.com/fwlink/?linkid=848054.
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hans.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hans.xlf
index 306e13362..78677d164 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hans.xlf
@@ -64,10 +64,10 @@ Here are some options to fix this error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
已成功安装 ASP.NET Core HTTPS 开发证书。
-要信任证书(仅限 Windows 和 macOS),请首先通过运行 "dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final" 安装 dev-certs 工具,然后运行 "dotnet-dev-certs https --trust"。
+要信任证书,请运行 "dotnet dev-certs https --trust"(仅限 Windows 和 macOS)。要在其他平台上建立信任,请参阅特定于平台的文档。
有关配置 HTTPS 的详细信息,请参阅 https://go.microsoft.com/fwlink/?linkid=848054。
diff --git a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hant.xlf b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hant.xlf
index ff169341b..35a835e0d 100644
--- a/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/Microsoft.DotNet.Configurer/xlf/LocalizableStrings.zh-Hant.xlf
@@ -64,11 +64,11 @@ Here are some options to fix this error:
Successfully installed the ASP.NET Core HTTPS Development Certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only). For establishing trust on other platforms refer to the platform specific documentation.
For more information on configuring HTTPS see https://go.microsoft.com/fwlink/?linkid=848054.
- ASP.NET Core
+ ASP.NET Core
------------
已成功安裝 ASP.NET Core HTTPS 開發憑證。
-若要信任此憑證 (僅限 Windows 與 macOS),請先執行 'dotnet tool install dotnet-dev-certs -g --version 2.1.0-preview1-final' 來安裝 dev-certs 工具,然後再執行 'dotnet-dev-certs https --trust'。
-如需如何設定 HTTPS 的詳細資訊,請參閱 https://go.microsoft.com/fwlink/?linkid=848054。
+若要信任此憑證,請執行 'dotnet dev-certs https --trust' (僅限 Windows 與 macOS)。若要在其他平台上建立信任,請參閱各平台適用的文件。
+如需設定 HTTPS 的詳細資訊,請參閱 https://go.microsoft.com/fwlink/?linkid=848054。
diff --git a/src/dotnet/BuildServer/xlf/LocalizableStrings.cs.xlf b/src/dotnet/BuildServer/xlf/LocalizableStrings.cs.xlf
index 3ee07751f..1e07c2ed8 100644
--- a/src/dotnet/BuildServer/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/BuildServer/xlf/LocalizableStrings.cs.xlf
@@ -24,7 +24,7 @@
- Failed to read pid file '{0}': {1}
+ Nepodařilo se přečíst soubor s identifikátorem PID {0}: {1}
- Prohlížeč závislostí mezi projekty .NET Core
+ Zobrazí všechny odkazy mezi projekty v projektu.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.de.xlf
index 4b74a0424..cfd996bcb 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.de.xlf
@@ -4,7 +4,7 @@
- Viewer für .NET Core-Interprojektabhängigkeit
+ Hiermit listen Sie alle Projekt-zu-Projekt-Verweise des Projekts auf.
@@ -15,8 +15,8 @@
- In Projekt „{1}“ liegen keine {0}-Verweise vor.
-{0} ist der Typ des angeforderten Elements (Projekt, Paket, P2P) und „{1}“ das Objekt, an dem der Vorgang ausgeführt wird (eine Projekt- oder Projektmappendatei).
+ In Projekt "{1}" liegen keine {0}-Verweise vor.
+{0} ist der Typ des angeforderten Elements (Projekt, Paket, P2P) und "{1}" das Objekt, an dem der Vorgang ausgeführt wird (eine Projekt- oder Projektmappendatei).
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.es.xlf
index 2a03f6f94..33fde1043 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.es.xlf
@@ -4,7 +4,7 @@
- Visor de dependencias de proyecto a proyecto de .NET Core
+ Enumera referencias de proyecto a proyecto del proyecto.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.fr.xlf
index 366f4fb99..0c0738bf5 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.fr.xlf
@@ -4,7 +4,7 @@
- Visionneuse de dépendances de projet à projet .NET Core
+ Listez toutes les références projet à projet du projet.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.it.xlf
index 95ae47f6c..de3e3fd7e 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.it.xlf
@@ -4,7 +4,7 @@
- Visualizzatore dipendenze P2P (da progetto a progetto) di .NET Core
+ Elenca tutti i riferimenti P2P (da progetto a progetto) del progetto.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ja.xlf
index 7d3d940a5..6bf2919a9 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ja.xlf
@@ -4,7 +4,7 @@
- .NET Core プロジェクト間の依存関係ビューアー
+ プロジェクトのすべてのプロジェクト間参照をリストします。
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ko.xlf
index b50299b56..5f35c5faa 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ko.xlf
@@ -4,7 +4,7 @@
- .NET Core p2p(프로젝트 간) 종속성 뷰어
+ 프로젝트의 모든 프로젝트 간 참조를 나열합니다.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pl.xlf
index d73f2c106..ea08bb17e 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pl.xlf
@@ -4,7 +4,7 @@
- Podgląd zależności między projektami w programie .NET Core
+ Wyświetl listę wszystkich odwołań między projektami w projekcie.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pt-BR.xlf
index 1a3ce51cb..ff347ed6f 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.pt-BR.xlf
@@ -4,7 +4,7 @@
- Visualizador de dependência Projeto a Projeto do .NET Core
+ Listar todas as referências de projeto a projeto do projeto.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ru.xlf
index ad0f4b5ec..876b05ed8 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.ru.xlf
@@ -4,7 +4,7 @@
- Средство просмотра зависимостей между проектами .NET Core
+ Вывод списка всех ссылок из одного проекта на другой.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.tr.xlf
index 37e1afcc6..7f93a3980 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.tr.xlf
@@ -4,7 +4,7 @@
- .NET Core Projeden Projeye bağımlılık görüntüleyicisi
+ Projenin tüm projeden projeye başvurularını listeleyin.
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hans.xlf
index 453191ed4..cfc05229a 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hans.xlf
@@ -4,7 +4,7 @@
- .NET Core 项目到项目的依赖项查看器
+ 列出项目的所有项目到项目引用。
@@ -16,7 +16,7 @@
项目 {1} 中没有 {0} 引用。
-{0} 是正在请求的项类型(项目、包、p2p),{1} 是项目文件或解决方案文件上操作的对象。
+{0} 是正在请求的项类型(项目、包、p2p),{1} 是操作的对象(项目文件或解决方案文件)。
diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hant.xlf
index 05a03f7a6..14996820f 100644
--- a/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-list/dotnet-list-reference/xlf/LocalizableStrings.zh-Hant.xlf
@@ -4,7 +4,7 @@
- .NET Core 專案對專案相依性檢視器
+ 列出專案的所有專案對專案參考。
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf
index 4b17c3ff0..8b172feb9 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf
@@ -4,7 +4,7 @@
- Příkaz .NET pro zobrazení seznamu
+ Zobrazí odkazy projektu .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf
index 527b03907..6a3b54dbb 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf
@@ -4,7 +4,7 @@
- .NET-Auflistbefehl
+ Hiermit listen Sie die Verweise eines .NET-Projekts auf.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf
index 2433b8b81..bfa88eae8 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf
@@ -4,7 +4,7 @@
- Comando de lista de .NET
+ Enumera las referencias de un proyecto de .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf
index 7b0852711..03ccd6153 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf
@@ -4,7 +4,7 @@
- Commande de liste .NET
+ Listez les références d'un projet .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf
index cad0bd9d7..187b7e6c0 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf
@@ -4,7 +4,7 @@
- Comando Elenca .NET
+ Elenca i riferimenti di un progetto .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf
index ef3f34b9d..15a7943f2 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf
@@ -4,7 +4,7 @@
- .NET List コマンド
+ .NET プロジェクトの参照を一覧表示します。
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf
index 412876daf..fd3816690 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf
@@ -4,7 +4,7 @@
- .NET 명령 나열
+ .NET 프로젝트의 참조를 나열합니다.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf
index c27718ed6..bb29eb8ca 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf
@@ -4,7 +4,7 @@
- Polecenie list platformy .NET
+ Wyświetl listę odwołań projektu .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf
index 6de78d997..edd56cd49 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf
@@ -4,7 +4,7 @@
- Comando List do .NET
+ Liste as referências de um projeto do .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf
index 292136310..def5802b8 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf
@@ -4,7 +4,7 @@
- Команда .NET "Список"
+ Вывод списка ссылок для проекта .NET.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf
index 5fee7b6d3..8d76ddf33 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf
@@ -4,7 +4,7 @@
- .NET Listeleme Komutu
+ Bir .NET projesinin başvurularını listeleyin.
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf
index a77780586..9a5dcccbe 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf
@@ -4,7 +4,7 @@
- .NET 列表命令
+ 列出 .NET 项目的引用。
diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf
index b37654de5..15daea02b 100644
--- a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf
@@ -4,7 +4,7 @@
- .NET 清單命令
+ 列出 .NET 專案的參考。
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf
index 8601a37e3..5b784e5dd 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Výchozí hodnota je aktuální adresář (pokud není zadaný jiný adresář).
- Základní šablona souboru MSBuild, která se použije pro migrovanou aplikaci. Výchozí hodnotou je projekt v příkazu dotnet new.
+ Základní šablona MSBuild, která se má použít pro migrovaný projekt.
+Výchozí hodnotou je projekt v příkazu dotnet new.
- Verze balíčku sady SDK, na kterou bude odkazovat migrovaná aplikace. Výchozí hodnotou je verze sady SDK v příkazu dotnet new.
+ Verze balíčku sady SDK, na kterou bude odkazovat migrovaný projekt.
+Výchozí hodnotou je verze sady SDK v příkazu dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf
index b081b1b63..6b302513f 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Ohne Angabe wird standardmäßig das aktuelle Verzeichnis verwendet.
- Grundlegende MSBuild-Vorlage, die für die migrierte App verwendet werden soll. Standardmäßig wird das in "dotnet new" enthaltene Projekt verwendet.
+ Die grundlegende MSBuild-Vorlage, die für das migrierte Projekt verwendet werden soll.
+Standardmäßig wird das in "dotnet new" enthaltene Projekt verwendet.
- Die Version des SDK-Pakets, auf das in der migrierten App verwiesen wird. Standardmäßig wird die Version des SDKs in "dotnet new" verwendet.
+ Die Version des SDK-Pakets, auf das in dem migrierten Projekt verwiesen wird.
+Standardmäßig wird die Version des SDK in "dotnet new" verwendet.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf
index 0fe620f9e..21f2255b3 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Si no se especifica ninguno, usa el directorio actual de forma predeterminada.
- Plantilla base de MSBuild para la aplicación migrada. El valor predeterminado es el proyecto incluido en dotnet new.
+ La plantilla base de MSBuild para el proyecto migrado.
+El valor predeterminado es el proyecto incluido en dotnet new.
- Versión del paquete de SDK al que se hará referencia en la aplicación migrada. El valor predeterminado es la versión del SDK en dotnet new.
+ La versión del paquete de SDK al que se hará referencia en el proyecto migrado.
+El valor predeterminado es la versión del SDK en dotnet new.
@@ -66,7 +68,7 @@ The default is the version of the SDK in dotnet new.
- Omite el traslado de los archivos project.json, global.json y *.xproj a directorio “backup” después de una migración correcta.
+ Omite el traslado de los archivos project.json, global.json y *.xproj a directorio "backup" después de una migración correcta.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf
index 345803c92..eb6cd35ba 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ La valeur par défaut correspond au répertoire actif, si rien n'est spécifié.
- Modèle MSBuild de base à utiliser pour l'application migrée. La valeur par défaut est le projet inclus dans dotnet new.
+ Modèle MSBuild de base à utiliser pour le projet migré.
+La valeur par défaut est le projet inclus dans dotnet new.
- Version du package du SDK à référencer dans l'application migrée. La valeur par défaut est la version du SDK dans dotnet new.
+ Version du package de kit SDK à référencer dans le projet migré.
+La valeur par défaut est la version du kit SDK dans dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf
index cd745e912..1932d4076 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/FILE_SOLUZIONE/DIR_PROGETTO
+ PERCORSO
@@ -35,13 +35,15 @@ Se non si specifica un valore, per impostazione predefinita, verrà usata la dir
- Modello MSBuild di base da usare per l'app di cui è stata eseguita la migrazione. L'impostazione predefinita è il progetto incluso in dotnet new.
+ Modello MSBuild di base da usare per il progetto di cui è stata eseguita la migrazione.
+L'impostazione predefinita è il progetto incluso in dotnet new.
- Versione del pacchetto SDK a cui verrà fatto riferimento nell'app di cui è stata eseguita la migrazione. L'impostazione predefinita è la versione dell'SDK in dotnet new.
+ Versione del pacchetto SDK a cui verrà fatto riferimento nel progetto di cui è stata eseguita la migrazione.
+L'impostazione predefinita è la versione dell'SDK in dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf
index ddaff7df5..c88ae28e1 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Defaults to current directory if nothing is specified.
- 移行されたアプリに使用する基本の MSBuild テンプレート。既定は dotnet new に含まれるプロジェクトです。
+ 移行したプロジェクトに使用する基本の MSBuild テンプレート。
+既定は dotnet new に含まれるプロジェクトです。
- 移行されたアプリで参照される SDK パッケージのバージョン。既定は dotnet new の SDK のバージョンです。
+ 移行したプロジェクトで参照される SDK パッケージのバージョン。
+既定は dotnet new の SDK のバージョンです。
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf
index 787981c78..e88d8aa20 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Defaults to current directory if nothing is specified.
- 마이그레이션된 앱에 사용할 기본 MSBuild 템플릿입니다. 기본값은 새 dotnet에 포함된 프로젝트입니다.
+ 마이그레이션된 프로젝트에 사용할 기본 MSBuild 템플릿입니다.
+기본값은 새 dotnet에 포함된 프로젝트입니다.
- 마이그레이션된 앱에서 참조되는 SDK 패키지의 버전입니다. 기본값은 새 dotnet의 SDK 버전입니다.
+ 마이그레이션된 프로젝트에서 참조되는 SDK 패키지의 버전입니다.
+기본값은 새 dotnet의 SDK 버전입니다.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf
index 6ec6b2ae0..e8ceae59d 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf
@@ -14,7 +14,7 @@
- PLIK_JSON_PROJEKTU/GLOBALNY_PLIK_JSON/PLIK_ROZWIĄZANIA/KATALOG_PROJEKTU
+ ŚCIEŻKA
@@ -35,13 +35,15 @@ W przypadku braku podanej wartości domyślnie jest to bieżący katalog.
- Podstawowy szablon programu MSBuild do użycia dla zmigrowanej aplikacji. Domyślną wartością jest projekt uwzględniony w poleceniu dotnet new.
+ Podstawowy szablon programu MSBuild do użycia dla zmigrowanego projektu.
+Domyślną wartością jest projekt uwzględniony w poleceniu dotnet new.
- Wersja pakietu SDK, do którego odwołanie będzie się znajdować w zmigrowanej aplikacji. Domyślnie jest to wersja pakietu SDK podana w poleceniu dotnet new.
+ Wersja pakietu SDK, do którego odwołanie będzie się znajdować w zmigrowanym projekcie.
+Domyślnie jest to wersja pakietu SDK podana w poleceniu dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf
index 9fbf03d65..93ae59db5 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Usará o diretório atual como padrão se nenhuma opção for especificada.
- Modelo base do MSBuild a ser usado para o aplicativo migrado. O padrão é o projeto incluído em dotnet new.
+ O modelo base do MSBuild a ser usado para o projeto migrado.
+O padrão é o projeto incluído em dotnet new.
- A versão do pacote SDK que será referida no aplicativo migrado. O padrão é a versão do SDK em dotnet new.
+ A versão do pacote do SDK que será referenciada no projeto migrado.
+O padrão é a versão do SDK em dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf
index 3c4fc82a1..d98a16757 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Defaults to current directory if nothing is specified.
- Основной шаблон MSBuild, используемый для переносимого приложения. По умолчанию применяется проект, указанный в команде dotnet new.
+ Основной шаблон MSBuild, используемый для переносимого проекта.
+По умолчанию используется проект, указанный в команде dotnet new.
- Версия пакета SDK, на который будет ссылаться переносимое приложение. По умолчанию применяется версия пакета SDK в команде dotnet new.
+ Версия пакета SDK, на который будет ссылаться переносимый проект.
+По умолчанию используется версия пакета SDK, указанная в команде dotnet new.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf
index 869bed259..2f3f3b871 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Bir seçenek belirtilmezse, geçerli dizin varsayılan olarak kullanılır.
- Geçirilen uygulama için kullanılacak temel MSBuild şablonu. Yeni dotnet’e eklenen proje, varsayılan değerdir.
+ Geçirilen proje için kullanılacak temel MSBuild şablonu.
+Yeni dotnet’e eklenen proje, varsayılan değerdir.
- Geçirilen uygulamada başvurulacak SDK paketinin sürümü. Yeni dotnet’teki SDK sürümü, varsayılan değerdir.
+ Geçirilen projede başvurulacak SDK paketinin sürümü.
+Yeni dotnet’teki SDK sürümü, varsayılan değerdir.
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf
index 948b01f8b..d8e5ffd87 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Defaults to current directory if nothing is specified.
- 针对迁移的应用使用的基本 MSBuild 模板。默认值为 dotnet new 中包含的项目。
+ 针对迁移的项目使用的基本 MSBuild 模板。
+默认值为 dotnet new 中包含的项目。
- 要在迁移的应用中引用的 SDK 包版本。默认值为 dotnet new 中的 SDK 版本。
+ 要在迁移的项目中引用的 SDK 包版本。
+默认值为 dotnet new 中的 SDK 版本。
diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf
index 0ead4248b..c7faa0ac3 100644
--- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf
@@ -14,7 +14,7 @@
- PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR
+ PATH
@@ -35,13 +35,15 @@ Defaults to current directory if nothing is specified.
- 要用於受移轉應用程式的基底 MSBuild 範本。預設為 dotnet new 中所包含的專案。
+ 為已移轉之應用程式使用的基底 MSBuild 範本。
+預設為 dotnet new 中所包含的專案。
- 已移轉的應用程式中將會參考的 SDK 套件版本。預設為 dotnet new 中的 SDK 版本。
+ 已移轉之專案中將會參考的 SDK 套件版本。
+預設為 dotnet new 中的 SDK 版本。
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf
index ceb78234e..2d5a3086e 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf
@@ -19,7 +19,7 @@
- Adresář, do kterého se umisťují sestavené balíčky.
+ Výstupní adresář, kam se mají umístit sestavené balíčky
@@ -34,12 +34,12 @@
- Zahrne soubory PDB a zdrojové soubory. Zdrojové soubory ve složce srcve výsledném balíčku NuGet
+ Zahrne soubory PDB a zdrojové soubory. Zdrojové soubory budou ve složce src ve výsledném balíčku NuGet.
- Nastaví v balíčku příznak obsluhovatelnosti. Další informace najdete na adrese https://aka.ms/nupkgservicing.
+ Nastaví v balíčku příznak obsluhovatelnosti. Další informace najdete na adrese https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Konfigurace použitá k sestavení balíčku. Výchozí možností pro většinu projektů je Debug.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf
index 7ccbfda8d..dba801a2d 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf
@@ -19,7 +19,7 @@
- Verzeichnis, in dem erstellte Pakete abgelegt werden.
+ Das Ausgabeverzeichnis, in dem erstellte Pakete abgelegt werden.
@@ -34,12 +34,12 @@
- PDBs und Quelldateien einschließen. Quelldateien werden im Ordner "src" im resultierenden NuGet-Paket abgelegt.
+ Hiermit werden PDBs und Quelldateien eingeschlossen. Quelldateien werden im Ordner "src" im resultierenden NuGet-Paket abgelegt.
- Legt das Verarbeitungsflag im Paket fest. Weitere Informationen finden Sie unter https://aka.ms/nupkgservicing.
+ Hiermit wird das Verarbeitungsflag im Paket festgelegt. Weitere Informationen finden Sie unter https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Die für die Paketerstellung zu verwendende Konfiguration. Standard für die meisten Projekte ist "Debug".
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf
index 384385dbc..e94cb10c5 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf
@@ -4,7 +4,7 @@
- pack
+ .NET Core NuGet Package Packer
@@ -19,7 +19,7 @@
- Directorio donde se ubican los paquetes compilados.
+ Directorio de salida en el que se ubicarán los paquetes compilados.
@@ -34,12 +34,12 @@
- Se incluyen los archivos PDB y de código fuente. Los archivos de código fuente van a la carpeta src del paquete NuGet resultante
+ Se incluyen los archivos PDB y de código fuente. Los archivos de código fuente van a la carpeta "src" del paquete de NuGet resultante
- Establece la marca serviceable en el paquete. Para más información, consulte https://aka.ms/nupkgservicing.
+ Establece la marca serviceable en el paquete. Para obtener más información, consulte https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ La configuración que se usará para compilar el paquete. El valor predeterminado para la mayoría de los proyectos es "Debug".
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf
index 65f3d3200..d4384b858 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf
@@ -19,7 +19,7 @@
- Répertoire dans lequel placer les packages générés
+ Répertoire de sortie dans lequel placer les packages générés.
@@ -34,12 +34,12 @@
- Inclure les PDB et les fichiers sources. Les fichiers sources vont dans le dossier src dans le paquet NuGet résultant
+ Incluez les fichiers PDB et les fichiers sources. Les fichiers sources vont dans le dossier 'src' du package NuGet résultant.
- Définissez l'indicateur de maintenance dans le package. Pour plus d'informations, consultez https://aka.ms/nupkgservicing.
+ Définissez l'indicateur de maintenance dans le package. Pour plus d'informations, consultez https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Configuration à utiliser pour la génération du package. La valeur par défaut pour la plupart des projets est 'Debug'.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf
index e7b1e9554..5093bd16a 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf
@@ -19,7 +19,7 @@
- Directory in cui inserire i pacchetti compilati.
+ Directory di output in cui inserire i pacchetti compilati.
@@ -34,12 +34,12 @@
- Include i PDB e i file di origine. I file di origine vengono inseriti nella cartella src nel pacchetto NuGet risultante
+ Include i PDB e i file di origine. I file di origine vengono inseriti nella cartella 'src' nel pacchetto NuGet risultante.
- Imposta il flag serviceable nel pacchetto. Per altre informazioni,vedere https://aka.ms/nupkgservicing.
+ Imposta il flag serviceable nel pacchetto. Per altre informazioni, vedere https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Configurazione da usare per compilare il pacchetto. L'impostazione predefinita per la maggior parte dei progetti è 'Debug'.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf
index 952014610..216482fe4 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf
@@ -19,7 +19,7 @@
- ビルド パッケージを配置するディレクトリ。
+ ビルドしたパッケージを配置する出力ディレクトリ。
@@ -34,12 +34,12 @@
- PDB とソース ファイルを含めます。ソース ファイルは、結果の nuget パッケージの src フォルダーに移動します
+ PDB とソース ファイルを含めます。ソース ファイルは、結果の nuget パッケージの 'src' フォルダーに移ります。
- パッケージに処理可能なフラグを設定します。詳しくは、https://aka.ms/nupkgservicing をご覧ください。
+ パッケージに処理可能なフラグを設定します。詳細については、https://aka.ms/nupkgservicing をご覧ください。
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ パッケージのビルドに使用する構成。ほとんどのプロジェクトで既定は 'Debug' です。
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf
index 560990376..460f01c67 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf
@@ -19,7 +19,7 @@
- 빌드된 패키지를 배치할 디렉터리입니다.
+ 빌드된 패키지를 배치할 출력 디렉터리입니다.
@@ -34,12 +34,12 @@
- PDB 및 소스 파일을 포함합니다. 소스 파일이 결과 nuget 패키지의 src 폴더로 이동합니다.
+ PDB 및 소스 파일을 포함합니다. 소스 파일이 결과 nuget 패키지의 'src' 폴더로 이동합니다.
- 패키지에서 서비스 가능 플래그를 설정합니다. 자세한 내용은 https://aka.ms/nupkgservicing을 참조하세요.
+ 패키지에서 서비스 가능 플래그를 설정합니다. 자세한 내용은 https://aka.ms/nupkgservicing을 참조하세요.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ 패키지 빌드에 사용할 구성입니다. 대부분의 프로젝트에서 기본값은 'Debug'입니다.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf
index fb4163eb0..7dee3c19f 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf
@@ -19,7 +19,7 @@
- Katalog, w którym mają zostać umieszczone skompilowane pakiety.
+ Katalog wyjściowy, w którym mają zostać umieszczone skompilowane pakiety.
@@ -34,12 +34,12 @@
- Dołącz pliki PDB i pliki źródłowe. Pliki źródłowe zostaną umieszczone w folderze src w wynikowym pakiecie NuGet
+ Dołącz pliki PDB i pliki źródłowe. Pliki źródłowe zostaną umieszczone w folderze „src” w wynikowym pakiecie NuGet.
- Ustaw w pakiecie flagę oznaczającą możliwość obsługi. Aby uzyskać więcej informacji, zobacz https://aka.ms/nupkgservicing.
+ Ustaw w pakiecie flagę oznaczającą możliwość serwisowania. Aby uzyskać więcej informacji, zobacz https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Konfiguracja do użycia na potrzeby kompilacji pakietu. W przypadku większości projektów ustawienie domyślne to „Debugowanie”.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf
index 0ad43b4a5..acf595e77 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf
@@ -19,7 +19,7 @@
- Diretório no qual os pacotes compilados serão colocados.
+ O diretório de saída no qual os pacotes do build serão colocados.
@@ -34,12 +34,12 @@
- Incluir os arquivos de origem e os PDBs. Os arquivos de origem vão para a pasta de origem no pacote nuget resultante
+ Incluir os arquivos de origem e os PDBs. Os arquivos de origem vão para a pasta 'src' no pacote do nuget resultante.
- Defina o sinalizador operacional no pacote. Para obter mais informações, consulte https://aka.ms/nupkgservicing.
+ Definir o sinalizador operacional no pacote. Para obter mais informações, confira https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ A configuração a ser usada para compilar o pacote. O padrão para a maioria dos projetos é 'Debug'.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf
index 1dd4c7aaf..f270e2264 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf
@@ -19,7 +19,7 @@
- Каталог для размещения созданных пакетов.
+ Выходной каталог для размещения собранных пакетов.
@@ -34,12 +34,12 @@
- Включение PDB-файлов и исходных файлов. Исходные файлы передаются в папку src в получившемся проекте NuGet
+ Включение PDB-файлов и исходных файлов. Исходные файлы помещаются в папку "src" в итоговом пакете NuGet.
- Установка флага "подлежит обслуживанию" в пакете. Дополнительные сведения см. на странице https://aka.ms/nupkgservicing.
+ Задание для пакета флага "подлежит обслуживанию". Дополнительные сведения: https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Конфигурация, используемая для сборки пакета. По умолчанию для большинства проектов используется "Debug".
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf
index 93a1480ac..02f58a090 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf
@@ -19,7 +19,7 @@
- Derlenen paketlerin yerleştirileceği dizin.
+ Derlenen paketlerin yerleştirileceği çıkış dizini.
@@ -34,12 +34,12 @@
- PDB’leri ve kaynak dosyaları ekleyin. Elde edilen nuget paketinde kaynak dosyaları, src klasöründe yer alır
+ PDB’leri ve kaynak dosyaları ekler. Elde edilen nuget paketinde kaynak dosyaları, ‘src’ klasöründe yer alır.
- Pakette serviceable bayrağını ayarlayın. Daha fazla bilgi için bkz. https://aka.ms/nupkgservicing.
+ Pakette serviceable bayrağını ayarlar. Daha fazla bilgi için bkz. https://aka.ms/nupkgservicing.
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ Paketi derlemek için kullanılacak yapılandırma. Çoğu proje için varsayılan, ‘Hata Ayıklama’ seçeneğidir.
diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf
index 5510bbd92..2d8fdc17e 100644
--- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf
@@ -19,7 +19,7 @@
- 用于放置生成包的目录。
+ 要放置生成包的输出目录。
@@ -34,12 +34,12 @@
- 包括 PDB 和源文件。源文件放入 nuget 结果包的 src 文件夹中
+ 包括 PDB 和源文件。源文件放入 nuget 结果包的“src”文件夹中。
- 在包中设置可用标志。有关详细信息,请参阅 https://aka.ms/nupkgservicing。
+ 在包中设置可用标志。有关详细信息,请参阅 https://aka.ms/nupkgservicing。
@@ -54,7 +54,7 @@
- The configuration to use for building the package. The default for most projects is 'Debug'.
+ 用于生成包的配置。大多数项目的默认值是 "Debug"。
- Příkaz rozhraní .NET pro odebrání odkazu na balíček
+ Odebrat odkaz na balíček NuGet z projektu
@@ -14,7 +14,7 @@
- Odkaz na balíček, který se má odebrat
+ Odkaz na balíček, který se má odebrat
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.de.xlf
index 0a44f4e8e..547b99182 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.de.xlf
@@ -4,7 +4,7 @@
- .NET-Befehl zum Entfernen von Paketverweisen
+ Hiermit entfernen Sie einen NuGet-Paketverweis aus dem Projekt.
@@ -14,7 +14,7 @@
- Zu entfernender Paketverweis.
+ Der zu entfernende Paketverweis.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.es.xlf
index d972522b4..fb6fe3ed5 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.es.xlf
@@ -4,7 +4,7 @@
- Comando de .NET para quitar referencia de paquete.
+ Quita una referencia de paquete de NuGet del proyecto.
@@ -14,7 +14,7 @@
- Referencia de paquete para quitar.
+ La referencia de paquete para quitar.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.fr.xlf
index 87a796f47..c97ef6a4b 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.fr.xlf
@@ -4,22 +4,22 @@
- Commande .NET Supprimer une référence de package.
+ Retirez une référence de package NuGet du projet.
- Commande permettant de supprimer une référence de package.
+ Commande permettant de retirer une référence de package.
- Référence de package à supprimer.
+ Référence de package à supprimer.
- Spécifiez une seule référence de package à supprimer.
+ Spécifiez une seule référence de package à retirer.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.it.xlf
index b63ed78c5..08a79d805 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.it.xlf
@@ -4,7 +4,7 @@
- Comando Rimuovi riferimento al pacchetto .NET.
+ Rimuove un riferimento al pacchetto NuGet dal progetto.
@@ -14,7 +14,7 @@
- Riferimento al pacchetto da rimuovere.
+ Riferimento al pacchetto da rimuovere.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ja.xlf
index d00f52f28..c60ef930c 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ja.xlf
@@ -4,7 +4,7 @@
- .NET パッケージ参照を削除するコマンド。
+ プロジェクトから NuGet パッケージ参照を削除します。
@@ -14,7 +14,7 @@
- 削除するパッケージ参照。
+ 削除するパッケージ参照。
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ko.xlf
index e93e651e0..2dcb2bc4c 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ko.xlf
@@ -4,7 +4,7 @@
- .NET 패키지 참조 제거 명령입니다.
+ 프로젝트에서 NuGet 패키지 참조를 제거합니다.
@@ -14,7 +14,7 @@
- 제거할 패키지 참조입니다.
+ 제거할 패키지 참조입니다.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pl.xlf
index e3603bc1c..f0ad02959 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pl.xlf
@@ -4,7 +4,7 @@
- Polecenie usuwania odwołania do pakietu platformy .NET.
+ Usuń odwołanie do pakietu NuGet z projektu.
@@ -14,7 +14,7 @@
- Odwołanie do pakietu do usunięcia.
+ Odwołanie do pakietu do usunięcia.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pt-BR.xlf
index 2a88dcb9c..58661c158 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.pt-BR.xlf
@@ -4,7 +4,7 @@
- Comando para remover referência do pacote de .NET.
+ Remover uma referência do pacote do NuGet do projeto.
@@ -14,7 +14,7 @@
- Referência de pacote a ser removida.
+ A referência do pacote a ser removida.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ru.xlf
index 4c3b9777b..73e073a62 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.ru.xlf
@@ -4,7 +4,7 @@
- Команда .NET "Удалить ссылку на пакет".
+ Удаление ссылки на пакет NuGet из проекта.
@@ -14,7 +14,7 @@
- Удаляемая ссылка на пакет.
+ Удаляемая ссылка на пакет.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.tr.xlf
index d2075c6dc..64f666cde 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.tr.xlf
@@ -4,7 +4,7 @@
- .NET Paket başvurusunu kaldır Komutu
+ Bir NuGet paketi başvurusunu projeden kaldırın.
@@ -14,7 +14,7 @@
- Kaldırılacak paket başvurusu.
+ Kaldırılacak paket başvurusu.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hans.xlf
index 18e1e2657..10673abf4 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hans.xlf
@@ -4,7 +4,7 @@
- .NET“删除包引用”命令。
+ 从项目中删除 NuGet 包引用。
@@ -14,7 +14,7 @@
- 要删除的包引用。
+ 要删除的包引用。
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hant.xlf
index 501025497..65bfa90df 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-package/xlf/LocalizableStrings.zh-Hant.xlf
@@ -4,7 +4,7 @@
- .NET 移除套件參考命令。
+ 從專案移除 NuGet 套件參考。
@@ -14,7 +14,7 @@
- 要移除的套件參考。
+ 要移除的套件參考。
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.cs.xlf
index dda62d007..1c61cdd62 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.cs.xlf
@@ -4,7 +4,7 @@
- Příkaz rozhraní .NET pro odebrání odkazu mezi projekty
+ Odebrat odkaz mezi projekty z projektu
@@ -14,17 +14,17 @@
- Odebrat odkaz jen v případě, že cílem je konkrétní architektura
+ Odebere odkaz jen v případě, že cílem je konkrétní architektura.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Cesty k odkazovaným projektům, které se mají odebrat
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.de.xlf
index 20e8cb5ea..463338e36 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.de.xlf
@@ -4,7 +4,7 @@
- .NET-Befehl zum Entfernen von Projekt-zu-Projekt-Verweisen
+ Hiermit entfernen Sie einen Projekt-zu-Projekt-Verweis aus dem Projekt.
@@ -14,17 +14,17 @@
- Verweis nur bei Verwendung eines bestimmten Zielframeworks entfernen
+ Der Verweis wird nur dann entfernt, wenn ein bestimmtes Zielframework als Zielversion verwendet wird.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Die Pfade zu den referenzierten Projekten, die entfernt werden sollen.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.es.xlf
index d3c428f8b..1c4419b0b 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.es.xlf
@@ -4,7 +4,7 @@
- Comando de .NET para quitar una referencia de proyecto a proyecto
+ Quita referencia de proyecto a proyecto del proyecto.
@@ -14,17 +14,17 @@
- Quita una referencia solo cuando el destino es una plataforma específica
+ Quita una referencia solo cuando el destino es una plataforma específica.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Las rutas a los proyectos a los que se hace referencia para quitar.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.fr.xlf
index 6d8be6501..aa21b6858 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.fr.xlf
@@ -4,27 +4,27 @@
- Commande .NET Supprimer une référence projet à projet
+ Retirez une référence projet à projet du projet.
- Commande permettant de supprimer une référence projet à projet
+ Commande permettant de retirer une référence projet à projet
- Supprimer une référence uniquement en cas de ciblage d'un framework spécifique
+ Supprimez la référence uniquement en cas de ciblage d'un framework spécifique.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Chemins des projets référencés à supprimer.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.it.xlf
index 614ee6387..164e2d120 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.it.xlf
@@ -4,7 +4,7 @@
- Comando Rimuovi riferimento P2P (da progetto a progetto) .NET
+ Rimuove un riferimento P2P (da progetto a progetto) dal progetto.
@@ -14,17 +14,17 @@
- Rimuove il riferimento solo se destinato a un framework specifico
+ Rimuove il riferimento solo se destinato a un framework specifico.
- PROJECT_PATH
+ PERCORSO_PROGETTO
- The paths to the referenced projects to remove.
+ Percorsi dei progetti di riferimento da rimuovere.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ja.xlf
index d0efef3c1..23aaf78a9 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ja.xlf
@@ -4,7 +4,7 @@
- .NET プロジェクト間参照を削除するコマンド
+ プロジェクト間参照をプロジェクトから削除します。
@@ -14,17 +14,17 @@
- 特定のフレームワークを対象とする場合にのみ参照を削除する
+ 特定のフレームワークを対象とする場合にのみ参照を削除します。
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ 削除する参照されたプロジェクトへのパス。
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ko.xlf
index 734be9039..11a769693 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ko.xlf
@@ -4,7 +4,7 @@
- .NET 프로젝트 간 참조 제거 명령
+ 프로젝트에서 프로젝트 간 참조를 제거합니다.
@@ -14,17 +14,17 @@
- 특정 프레임워크를 대상으로 지정할 때에만 참조를 제거합니다.
+ 특정 프레임워크를 대상으로 지정할 때에만 참조를 제거합니다.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ 제거할 참조된 프로젝트의 경로입니다.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pl.xlf
index 025dfb2d2..89af11901 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pl.xlf
@@ -4,7 +4,7 @@
- Polecenie usuwania odwołania między projektami dla platformy .NET
+ Usuń odwołanie między projektami z projektu.
@@ -14,17 +14,17 @@
- Usuń odwołanie tylko w przypadku określenia konkretnej platformy docelowej
+ Usuń odwołanie tylko w przypadku określenia konkretnej platformy docelowej.
- PROJECT_PATH
+ ŚCIEŻKA_PROJEKTU
- The paths to the referenced projects to remove.
+ Ścieżki do przywoływanych projektów, które mają zostać usunięte.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pt-BR.xlf
index 221b8983f..3f55f69bc 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.pt-BR.xlf
@@ -4,7 +4,7 @@
- Comando para remover a referência de projeto para projeto do .NET
+ Remova uma referência de projeto a projeto do projeto.
@@ -14,17 +14,17 @@
- Remover referência apenas ao definir uma estrutura específica como destino
+ Remover a referência apenas ao direcionar a uma estrutura específica.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Os caminhos para os projetos referenciados a serem removidos.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ru.xlf
index d4f7f0d2b..e66906958 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.ru.xlf
@@ -4,7 +4,7 @@
- Команда .NET "Удалить ссылку из одного проекта на другой"
+ Удаление в проекте ссылки из одного проекта на другой.
@@ -14,17 +14,17 @@
- Удалять ссылку только при выборе конкретной целевой платформы
+ Удалять ссылку только для конкретной целевой платформы.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Путь к проектам, добавленным в качестве ссылок, которые необходимо удалить.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.tr.xlf
index 4682aa5bf..ec47775ed 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.tr.xlf
@@ -4,7 +4,7 @@
- .NET Projeden Projeye başvuruyu kaldır Komutu
+ Bir projeden projeye başvuruyu projeden kaldırın.
@@ -14,17 +14,17 @@
- Yalnızca belirli bir çerçeveyi hedeflerken başvuruyu kaldırır
+ Yalnızca belirli bir çerçeveyi hedeflerken başvuruyu kaldırır.
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ Kaldırılacak başvurulan projelerin yolları.
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hans.xlf
index e31e5c54b..763836e6c 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hans.xlf
@@ -4,7 +4,7 @@
- .NET“删除项目到项目引用”命令
+ 从项目中删除项目到项目引用。
@@ -14,17 +14,17 @@
- 仅针对特定框架删除引用
+ 仅针对特定框架删除引用。
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ 要删除的引用项目的路径。
diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hant.xlf
index 66fcf7b28..5740d1ba0 100644
--- a/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-reference/xlf/LocalizableStrings.zh-Hant.xlf
@@ -4,7 +4,7 @@
- .NET 移除專案對專案參考命令
+ 從專案移除專案對專案參考。
@@ -14,17 +14,17 @@
- 只有在以特定架構為目標時才移除參考
+ 只有在以特定架構為目標時,才移除參考。
- PROJECT_PATH
+ PROJECT_PATH
- The paths to the referenced projects to remove.
+ 到達要移除之參考專案的路徑。
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf
index 3dfcec338..26ee6652e 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf
@@ -29,22 +29,22 @@
- Určuje zdroj balíčku NuGet, který se použije při obnovení.
+ Zdroj balíčku NuGet, který se má použít k obnovení
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- Adresář, do kterého se instalují balíčky.
+ Adresář, do kterého se balíčky mají obnovit
- Zakáže souběžné obnovení několika projektů.
+ Zabrání souběžnému obnovení několika projektů.
@@ -69,7 +69,7 @@
- Když tento příznak nastavíte, ignorují se odkazy mezi projekty a obnoví se jenom kořenový projekt.
+ Neobnoví odkazy mezi projekty a obnoví jen konkrétní projekt.
@@ -79,13 +79,14 @@
- Cílový modul runtime pro obnovení balíčků.
+ Cílový modul runtime pro obnovení balíčků
- Tento příznak nastavte, pokud chcete vynutit vyřešení všech závislostí, i když poslední obnovení proběhlo úspěšně. Jedná se o ekvivalent odstranění project.assets.json.
+ Vynutí vyřešení všech závislostí, i když poslední obnovení proběhlo úspěšně.
+Jedná se o ekvivalent odstranění project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf
index 00d8248a2..6170d1d2e 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf
@@ -4,7 +4,7 @@
- Funktion.zum Wiederherstellen der NET-Abhänigkeit
+ Funktion.zum Wiederherstellen der NET-Abhängigkeit
@@ -29,22 +29,22 @@
- Gibt eine NuGet-Paketquelle für die Wiederherstellung an.
+ Die für die Wiederherstellung zu verwendende NuGet-Paketquelle.
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- Zielverzeichnis für die Paketinstallation.
+ Das Verzeichnis, in dem Pakete wiederhergestellt werden sollen.
- Deaktiviert die parallele Wiederherstellung mehrerer Projekte.
+ Hiermit wird die parallele Wiederherstellung mehrerer Projekte verhindert.
@@ -69,7 +69,7 @@
- Legen Sie dieses Flag fest, um Projekt-zu-Projekt-Verweise zu ignorieren und nur das Stammprojekt wiederherzustellen.
+ Hiermit werden keine Projekt-zu-Projekt-Verweise wiederhergestellt, sondern nur das angegebene Projekt.
@@ -79,13 +79,14 @@
- Zielruntime für die Wiederherstellung von Paketen.
+ Die Zielruntime für die Wiederherstellung von Paketen.
- Legen Sie dieses Flag fest, damit alle Abhängigkeiten aufgelöst werden, auch wenn die letzte Wiederherstellung erfolgreich war. Dies entspricht dem Löschen von "project.assets.json".
+ Hiermit wird erzwungen, dass alle Abhängigkeiten aufgelöst werden, auch wenn die letzte Wiederherstellung erfolgreich war.
+Dies entspricht dem Löschen von "project.assets.json".
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf
index c1dde2c11..4e10717e3 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf
@@ -29,22 +29,22 @@
- Especifica el origen de un paquete NuGet para usarlo durante la restauración.
+ El origen de un paquete de NuGet para usarlo para la restauración.
- DIRECTORIO_DE:PAQUETES
+ PACKAGES_DIR
- Directorio donde se instalarán los paquetes.
+ El directorio en el que se restauran paquetes.
- Deshabilita la restauración de varios proyectos en paralelo.
+ Evite la restauración de varios proyectos en paralelo.
@@ -69,7 +69,7 @@
- Establezca esta marca para que se omitan las referencias de proyecto a proyecto y se restaure solo el proyecto raíz.
+ No restaure referencias de proyecto a proyecto y restaure solo el proyecto especificado.
@@ -79,13 +79,14 @@
- Runtime de destino para el que restaurar los paquetes.
+ El tiempo de ejecución de destino para el que se restauran los paquetes.
- Establezca este indicador para forzar la resolución de todas las dependencias aunque la última restauración se haya realizado correctamente. Esta acción es equivalente a eliminar project.assets.json.
+ Fuerce la resolución de todas las dependencias aunque la última restauración se haya realizado correctamente.
+Esta acción es equivalente a eliminar project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf
index 165614404..e0b31e814 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf
@@ -29,22 +29,22 @@
- Spécifie une source de package NuGet à utiliser pendant la restauration.
+ Source de package NuGet à utiliser pour la restauration.
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- Répertoire dans lequel installer les packages.
+ Répertoire de restauration des packages.
- Désactive la restauration de plusieurs projets en parallèle.
+ Empêche la restauration de plusieurs projets en parallèle.
@@ -69,7 +69,7 @@
- Définissez cet indicateur pour ignorer les références de projet à projet et restaurer uniquement le projet racine.
+ Ne restaurez pas les références de projet à projet, et restaurez uniquement le projet spécifié.
@@ -79,13 +79,14 @@
- Runtime cible pour lequel restaurer les packages.
+ Runtime cible pour lequel la restauration des packages est effectuée.
- Définissez cet indicateur pour forcer la résolution de toutes les dépendances même si la dernière restauration a réussi. Cela équivaut à supprimer project.assets.json.
+ Forcez la résolution de toutes les dépendances même si la dernière restauration a réussi.
+Cela équivaut à supprimer project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf
index 485298ee0..82b3fab68 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf
@@ -29,22 +29,22 @@
- Consente di specificare un'origine pacchetto NuGet da usare durante il ripristino.
+ Origine pacchetto NuGet da usare per il ripristino.
- DIRECTORY_PACCHETTI
+ DIR_PACCHETTI
- Directory in cui installare i pacchetti.
+ Directory in cui ripristinare i pacchetti.
- Disabilita il ripristino di più progetti in parallelo.
+ Impedisce il ripristino di più progetti in parallelo.
@@ -69,7 +69,7 @@
- Impostare questo flag per ignorare i riferimenti P2P (da progetto a progetto) e ripristinare solo il progetto radice.
+ Non ripristina i riferimenti P2P (da progetto a progetto) e ripristina solo il progetto specificato.
@@ -79,13 +79,14 @@
- Runtime di destinazione per cui ripristinare i pacchetti.
+ Runtime di destinazione per cui ripristinare i pacchetti.
- Impostare questo flag per forzare la risoluzione di tutte le dipendenze anche se l'ultimo ripristino è riuscito. Equivale a eliminare project.assets.json.
+ Forza la risoluzione di tutte le dipendenze anche se l'ultimo ripristino non è riuscito.
+Equivale a eliminare project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf
index c76cb47cf..2752bf8d7 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf
@@ -29,22 +29,22 @@
- 復元中に使用する NuGet パッケージ ソースを指定します。
+ 復元のために使用する NuGet パッケージ ソース。
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- パッケージをインストールするディレクトリ。
+ パッケージの復元先のディレクトリ。
- 複数のプロジェクトを並行して復元できないようにします。
+ 複数のプロジェクトを並行して復元できないようにします。
@@ -69,7 +69,7 @@
- プロジェクト間参照を無視して、ルート プロジェクトのみを復元するには、このフラグを設定します。
+ プロジェクト間参照を復元せず、指定したプロジェクトだけを復元します。
@@ -79,13 +79,14 @@
- パッケージ復元用のターゲット ランタイム。
+ パッケージを復元するターゲット ランタイム。
- このフラグを設定すると、最後に行われた復元が成功した場合でも強制的にすべての依存関係を解決します。これは、project.assets.json を削除することと同じです。
+ 最後に行われた復元が成功した場合でも、強制的にすべての依存関係が解決されます。
+これは、project.assets.json を削除することと同じです。
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf
index 4c7717f81..54ae028a3 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf
@@ -29,22 +29,22 @@
- 복원 중 사용할 NuGet 패키지 소스를 지정합니다.
+ 복원에 사용할 NuGet 패키지 소스입니다.
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- 패키지를 설치할 디렉터리입니다.
+ 패키지를 복원할 디렉터리입니다.
- 여러 프로젝트를 병렬로 복원을 사용하지 않도록 설정합니다.
+ 여러 프로젝트를 병렬로 복원하지 않습니다.
@@ -69,7 +69,7 @@
- 프로젝트 간 참조를 무시하고 루트 프로젝트만 복원하려면 이 플래그를 설정합니다.
+ p2p(프로젝트 간) 참조를 복원하지 않고 지정한 프로젝트만 복원합니다.
@@ -79,13 +79,14 @@
- 패키지를 복원할 대상 런타입니다.
+ 패키지를 복원할 대상 런타임입니다.
- 마지막 복원이 성공적인 경우에도 이 플래그를 설정하여 모든 종속성을 확인합니다. project.assets.json을 삭제하는 것과 동일합니다.
+ 마지막 복원이 성공적인 경우에도 모든 종속성을 확인합니다.
+project.assets.json을 삭제하는 것과 동일합니다.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf
index 0f8d97ed8..557a04ecc 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf
@@ -29,22 +29,22 @@
- Określa źródło pakietów NuGet do użycia podczas przywracania.
+ Źródło pakietów NuGet do użycia na potrzeby przywracania.
- KATALOG_PAKIETÓW
+ KATALOG_PAKIETÓW
- Katalog, w którym mają zostać zainstalowane pakiety.
+ Katalog, w którym zostaną przywrócone pakiety.
- Wyłącza równoległe przywracanie wielu projektów.
+ Nie zezwalaj na równoległe przywracanie wielu projektów.
@@ -69,7 +69,7 @@
- Ustaw tę flagę, aby ignorować odwołania między projektami i przywrócić tylko projekt główny.
+ Nie przywracaj odwołań między projektami i przywróć tylko określony projekt.
@@ -79,13 +79,14 @@
- Docelowe środowisko uruchomieniowe, dla którego mają zostać przywrócone pakiety.
+ Docelowe środowisko uruchomieniowe, dla którego mają zostać przywrócone pakiety.
- Ustaw tę flagę, aby wymusić rozstrzygnięcie wszystkich zależności nawet w przypadku, gdy ostatnie przywracanie się powiodło. Jest to równoważne usunięciu pliku project.assets.json.
+ Wymuś rozstrzygnięcie wszystkich zależności nawet w przypadku, gdy ostatnie przywracanie się powiodło.
+Jest to równoważne usunięciu pliku project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf
index 318c35b4e..126fb295e 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf
@@ -29,22 +29,22 @@
- Especifica uma origem de pacote do NuGet para ser usada durante a restauração.
+ A origem do pacote do NuGet a ser usada para a restauração.
- DIRETÓRIO_PACOTES
+ PACKAGES_DIR
- Diretório no qual instalar os pacotes.
+ O diretório no qual os pacotes serão restaurados.
- Desabilita a restauração de vários projetos em paralelo.
+ Evite restaurar vários projetos em paralelo.
@@ -69,7 +69,7 @@
- Definir esse sinalizador para ignorar referências de projeto para projeto e restaurar apenas o projeto raiz.
+ Não restaure referências de projeto para projeto e restaure somente o projeto especificado.
@@ -79,13 +79,14 @@
- O tempo de execução de destino para o qual restaurar pacotes.
+ O tempo de execução de destino no qual os pacotes serão restaurados.
- Defina este sinalizador para forçar todas as dependências a serem resolvidas, mesmo que a última restauração tenha tido êxito. Isso equivale a excluir o project.assets.json.
+ Force todas as dependências a serem resolvidas, mesmo que a última restauração tenha tido êxito.
+Isso equivale a excluir o project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf
index c931b8b09..412a3a023 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf
@@ -29,22 +29,22 @@
- Задает источник пакета NuGet, используемый во время восстановления.
+ Источник пакетов NuGet, используемый для восстановления.
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- Каталог для установки пакетов.
+ Каталог, в который будут восстановлены пакеты.
- Отключает параллельное восстановление нескольких проектов.
+ Блокировка параллельного восстановления множества проектов.
@@ -69,7 +69,7 @@
- Задайте этот флаг, чтобы пропускать ссылки проектов на проекты и выполнять восстановление только корневого проекта.
+ Не восстанавливать ссылки между проектами и восстановить только указанный проект.
@@ -79,13 +79,14 @@
- Целевая среда выполнения для восстановления пакетов.
+ Целевая среда выполнения для восстановления пакетов.
- Задайте этот флаг, чтобы принудительно разрешать все зависимости даже в случае успеха последнего восстановления. Это эквивалентно удалению project.assets.json.
+ Принудительное разрешение всех зависимостей даже в случае успеха последнего восстановления.
+Эквивалентно удалению файла project.assets.json.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf
index fdd3f8e42..a18493ec6 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf
@@ -29,22 +29,22 @@
- Geri yükleme sırasında kullanılacak bir NuGet paket kaynağı belirtir.
+ Geri yükleme için kullanılacak NuGet paket kaynağı.
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- Paketlerin yükleneceği dizin.
+ Paketlerin geri yükleneceği dizin.
- Birden fazla projenin paralel olarak geri yüklenmesini devre dışı bırakır.
+ Birden fazla projenin paralel olarak geri yüklenmesini önler.
@@ -69,7 +69,7 @@
- Projeden projeye başvuruları yoksaymak ve yalnızca kök projeyi geri yüklemek için bu bayrağı ayarlayın.
+ Projeden projeye başvuruları geri yüklemez ve yalnızca belirtilen projeyi geri yükler.
@@ -79,13 +79,14 @@
- Paketlerin geri yükleneceği hedef çalışma zamanı.
+ Paketlerin geri yükleneceği hedef çalışma zamanı.
- Son geri yükleme başarılı olsa bile tüm bağımlılıkların çözümlenmesini zorlamak için bu bayrağı ayarlayın. Bu, project.assets.json öğesini silmeyle eşdeğerdir.
+ Son geri yükleme başarılı olsa bile tüm bağımlılıkları çözümlenmeye zorlar.
+project.assets.json öğesini silmeyle eşdeğerdir.
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf
index 47c81f1cf..450f7834d 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf
@@ -29,22 +29,22 @@
- 指定还原期间使用的 NuGet 包源。
+ 用于还原的 NuGet 包源。
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- 用于将包安装到其中的目录。
+ 要将包还原到其中的目录。
- 禁止并行还原多个项目。
+ 防止并行还原多个项目。
@@ -69,7 +69,7 @@
- 设置此标志以忽略项目到项目引用,并仅还原根项目。
+ 请勿还原项目到项目引用,仅还原指定项目。
@@ -79,13 +79,14 @@
- 要还原包的目标运行时。
+ 要还原包的目标运行时。
- 设置此标志以强制解析所有依赖项,即使最后一次还原已经成功。这等效于删除 project.assets.json。
+ 强制解析所有依赖项,即使最后一次还原已经成功。
+这等效于删除 project.assets.json。
diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf
index 564a5bb17..98076e4bd 100644
--- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf
@@ -29,22 +29,22 @@
- 指定要在還原期間使用的 NuGet 套件來源。
+ 用於還原的 NuGet 套件來源。
- PACKAGES_DIRECTORY
+ PACKAGES_DIR
- 要安裝套件的目錄。
+ 還原套件的目標目錄。
- 停用平行還原多個專案的功能。
+ 避免平行還原多個專案。
@@ -69,7 +69,7 @@
- 將此旗標設定為略過專案對專案參考,且僅還原根專案。
+ 請勿還原專案對專案的參考,而只還原指定的專案。
@@ -79,13 +79,14 @@
- 要對其還原套件的目標執行階段。
+ 要對其還原套件的目標執行階段。
- 設定此旗標可在即使上次還原已成功的情況下,仍然強制解決所有相依性。如此等同於刪除 project.assets.json。
+ 在即使上次還原已成功的情況下,仍然強制解決所有相依性。
+如此等同於刪除 project.assets.json。
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf
index a3bdbef06..a5b28d13a 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf
@@ -138,12 +138,12 @@ Aktuální {1} je {2}.
- The configuration to run for. The default for most projects is 'Debug'.
+ Konfigurace pro spuštění. Výchozí možností pro většinu projektů je Debug.
- The target framework to run for. The target framework must also be specified in the project file.
+ Cílová architektura pro spuštění. Cílová architektura musí být určená také v souboru projektu.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf
index 3fc4cfe76..755ae0e6d 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf
@@ -138,12 +138,12 @@ Ein ausführbares Projekt sollte ein ausführbares TFM (z.B. netcoreapp2.0) verw
- The configuration to run for. The default for most projects is 'Debug'.
+ Die Konfiguration für die Ausführung. Der Standardwert für die meisten Projekte ist "Debug".
- The target framework to run for. The target framework must also be specified in the project file.
+ Das Zielframework für die Ausführung. Das Zielframework muss auch in der Projektdatei angegeben werden.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf
index b33b8fa21..d551a187d 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf
@@ -138,12 +138,12 @@ El actual {1} es "{2}".
- The configuration to run for. The default for most projects is 'Debug'.
+ La configuración para la que se ejecuta. El valor predeterminado para la mayoría de los proyectos es "Debug".
- The target framework to run for. The target framework must also be specified in the project file.
+ La plataforma de destino para la que se ejecuta. La plataforma de destino se debe especificar en el archivo de proyecto.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf
index e82441b91..f8822155b 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf
@@ -138,12 +138,12 @@ Le {1} actuel est '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ Configuration pour laquelle l'exécution est effectuée. La valeur par défaut pour la plupart des projets est 'Debug'.
- The target framework to run for. The target framework must also be specified in the project file.
+ Framework cible pour lequel l'exécution est effectuée. Le framework cible doit également être spécifié dans le fichier projet.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf
index 1c51f29c6..35d831a1a 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf
@@ -138,12 +138,12 @@ Il valore corrente di {1} è '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ Configurazione da usare per l'esecuzione. L'impostazione predefinita per la maggior parte dei progetti è 'Debug'.
- The target framework to run for. The target framework must also be specified in the project file.
+ Framework di destinazione da usare per l'esecuzione. Il framework di destinazione deve essere specificato anche nel file di progetto.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf
index 6dbca68aa..5faa47d1f 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf
@@ -138,12 +138,12 @@ The current {1} is '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ 実行する対象の構成。大部分のプロジェクトで、既定値は 'Debug' です。
- The target framework to run for. The target framework must also be specified in the project file.
+ 実行する対象のターゲット フレームワーク。ターゲット フレームワークはプロジェクト ファイルでも指定する必要があります。
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf
index d6789678d..d7427ca24 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf
@@ -138,12 +138,12 @@ The current {1} is '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ 실행할 구성입니다. 대부분의 프로젝트에서 기본값은 'Debug'입니다.
- The target framework to run for. The target framework must also be specified in the project file.
+ 실행할 대상 프레임워크입니다. 대상 프레임워크는 프로젝트 파일에도 지정되어야 합니다.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf
index 72eb9e890..7eca3fd1e 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf
@@ -138,12 +138,12 @@ Bieżący element {1}: „{2}”.
- The configuration to run for. The default for most projects is 'Debug'.
+ Konfiguracja, którą należy uruchomić. W przypadku większości projektów ustawienie domyślne to „Debugowanie”.
- The target framework to run for. The target framework must also be specified in the project file.
+ Platforma docelowa uruchomienia. Platforma docelowa musi być również określona w pliku projektu.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf
index 7f7bc7bea..8a894114d 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf
@@ -138,12 +138,12 @@ O {1} atual é '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ A configuração para a qual a execução ocorrerá. O padrão para a maioria dos projetos é 'Debug'.
- The target framework to run for. The target framework must also be specified in the project file.
+ A estrutura de destino para a qual a execução ocorrerá. A estrutura de destino também precisa ser especificada no arquivo de projeto.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf
index cede6cc8d..113425aec 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf
@@ -138,12 +138,12 @@ The current {1} is '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ Конфигурация для запуска. По умолчанию для большинства проектов используется "Debug".
- The target framework to run for. The target framework must also be specified in the project file.
+ Целевая платформа для запуска. Целевая платформа также должна быть указана в файле проекта.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf
index df0c2eda7..98acbea97 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf
@@ -138,12 +138,12 @@ Geçerli {1}: '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ Çalıştırılacak yapılandırma. Çoğu proje için varsayılan, ‘Hata Ayıklama’ seçeneğidir.
- The target framework to run for. The target framework must also be specified in the project file.
+ Çalıştırılacak hedef çerçeve. Hedef çerçevenin proje dosyasında da belirtilmesi gerekir.
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf
index 5a0159f06..bc340c300 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf
@@ -138,12 +138,12 @@ The current {1} is '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ 要运行的配置。大多数项目的默认值是 "Debug"。
- The target framework to run for. The target framework must also be specified in the project file.
+ 要运行的目标框架。必须在项目文件中指定目标框架。
diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf
index e91ad3d1b..52c201ca5 100644
--- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf
@@ -138,12 +138,12 @@ The current {1} is '{2}'.
- The configuration to run for. The default for most projects is 'Debug'.
+ 要為其執行的組態。大部分的專案預設為「偵錯」。
- The target framework to run for. The target framework must also be specified in the project file.
+ 要為其執行的目標架構。該目標架構也必須在專案檔中指定。
- Vypíše nástroje nainstalované v aktuálním vývojovém prostředí.
+ Vypíše nástroje nainstalované v aktuálním vývojovém prostředí.
- Vypsat nástroje všech uživatelů
+ Vypíše nástroje v adresáři nástrojů aktuálního uživatele.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ Adresář obsahující nástroje, které se mají vypsat
- Hiermit werden die in der aktuellen Entwicklungsumgebung installierten Tools aufgelistet.
+ Hiermit werden die in der aktuellen Entwicklungsumgebung installierten Tools aufgelistet.
- Hiermit werden benutzerweite Tools aufgelistet.
+ Hiermit werden Tools im Toolverzeichnis des aktuellen Benutzers aufgelistet.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ Das Verzeichnis, das die aufzulistenden Tools enthält.
- Enumera las herramientas instaladas en el entorno de desarrollo actual.
+ Enumera las herramientas instaladas en el entorno de desarrollo actual.
- Enumera las herramientas para todos los usuarios.
+ Enumera las herramientas del directorio de herramientas del usuario actual.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ El directorio que contiene las herramientas que se van a enumerar.
- Liste les outils installés dans l'environnement de développement actuel.
+ Listez les outils installés dans l'environnement de développement actuel.
- Listez les outils pour tous les utilisateurs.
+ Listez les outils du répertoire des outils de l'utilisateur actuel.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ Répertoire contenant les outils à lister.
- Elenca gli strumenti installati nell'ambiente di sviluppo corrente.
+ Elenca gli strumenti installati nell'ambiente di sviluppo corrente.
- Elenca gli strumenti a livello di utente.
+ Elenca gli strumenti presenti nella directory degli strumenti dell'utente corrente.
@@ -49,12 +49,12 @@
- PATH
+ PERCORSO
- The directory containing the tools to list.
+ Directory contenente gli strumenti da elencare.
- 現在の開発環境にインストールされているツールを一覧表示します。
+ 現在の開発環境にインストールされているツールを一覧表示します。
- ユーザー全体のツールを一覧表示します。
+ 現在のユーザーのツール ディレクトリにあるツールを一覧表示します。
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ 一覧表示するツールが入っているディレクトリ。
- 현재 개발 환경에 설치된 도구를 나열합니다.
+ 현재 개발 환경에 설치된 도구를 나열합니다.
- 사용자 전체 도구를 나열합니다.
+ 현재 사용자의 도구 디렉터리에 있는 도구를 나열합니다.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ 나열할 도구를 포함하는 디렉터리입니다.
- Wyświetla listę narzędzi zainstalowanych w bieżącym środowisku deweloperskim.
+ Wyświetl listę narzędzi zainstalowanych w bieżącym środowisku deweloperskim.
- Wyświetl listę narzędzi użytkownika.
+ Wyświetl listę narzędzi z katalogu narzędzi bieżącego użytkownika.
@@ -49,12 +49,12 @@
- PATH
+ ŚCIEŻKA
- The directory containing the tools to list.
+ Katalog zawierający narzędzia do wyświetlenia na liście.
- Lista as ferramentas instaladas no ambiente de desenvolvimento atual.
+ Liste as ferramentas instaladas no ambiente de desenvolvimento atual.
- Listar as ferramentas para todo o usuário.
+ Liste as ferramentas no diretório de ferramentas do usuário atual.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ O diretório que contém as ferramentas a serem listadas.
- Перечисляет установленные инструменты в текущей среде разработки.
+ Вывод списка инструментов, установленных в текущей среде разработки.
- Перечисление пользовательских инструментов.
+ Вывод списка инструментов в каталоге инструментов текущего пользователя.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ Каталог, содержащий перечисляемые инструменты.
- Geçerli geliştirme ortamında yüklü araçları listeler.
+ Geçerli geliştirme ortamında yüklü araçları listeler.
- Kullanıcıya yönelik araçları listeleyin.
+ Geçerli kullanıcının araçlar dizinindeki araçları listeler.
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ Listelenecek aracı içeren dizin.
- 列出当前开发环境中的已安装工具。
+ 列出当前开发环境中的已安装工具。
- 列出用户范围工具。
+ 列出当前用户工具目录中的工具。
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ 包含要列出的工具的目录。
- 列出目前開發環境中安裝的工具。
+ 列出目前開發環境中所安裝的工具。
- 列出全體使用者工具。
+ 列出目前使用者工具目錄中的工具。
@@ -49,12 +49,12 @@
- PATH
+ PATH
- The directory containing the tools to list.
+ 包含要列出之工具的目錄。
- ID balíčku NuGet nástroje, který se má odinstalovat
+ ID balíčku NuGet nástroje, který se má odinstalovat
- Odinstaluje nástroj.
+ Odinstaluje nástroj z aktuálního vývojového prostředí.
@@ -24,7 +24,7 @@
- Odinstalovat pro všechny uživatele
+ Odinstaluje nástroj z adresáře nástrojů aktuálního uživatele.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ Adresář obsahující nástroj, který se má odinstalovat
- NuGet-Paket-ID des Tools, das deinstalliert werden soll.
+ Die NuGet-Paket-ID des Tools, das deinstalliert werden soll.
- Hiermit wird ein Tool deinstalliert.
+ Hiermit wird ein Tool in der aktuellen Entwicklungsumgebung deinstalliert.
@@ -24,7 +24,7 @@
- Benutzerweite Deinstallation.
+ Hiermit wird das Tool im Toolverzeichnis des aktuellen Benutzers deinstalliert.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ Das Verzeichnis, das das zu deinstallierende Tool enthält.
- Id. del paquete de NuGet de la herramienta que se desinstalará.
+ El id. del paquete de NuGet de la herramienta que se desinstalará.
- Desinstala una herramienta.
+ Desinstala una herramienta del entorno de desarrollo actual.
@@ -24,7 +24,7 @@
- Desinstale para todos los usuarios.
+ Desinstala la herramienta del directorio de herramientas del usuario actual.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ El directorio que contiene la herramienta que se va a instalar.
- ID de package NuGet de l'outil à désinstaller.
+ ID de package NuGet de l'outil à désinstaller.
- Désinstalle un outil.
+ Désinstallez un outil de l'environnement de développement actuel.
@@ -24,7 +24,7 @@
- Effectuez la désinstallation pour tous les utilisateurs.
+ Désinstallez l'outil du répertoire des outils de l'utilisateur actuel.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ Répertoire contenant l'outil à désinstaller.
- ID pacchetto NuGet dello strumento da disinstallare.
+ ID pacchetto NuGet dello strumento da disinstallare.
- Disinstalla uno strumento.
+ Disinstalla uno strumento dall'ambiente di sviluppo corrente.
- PACKAGE_ID
+ ID_PACCHETTO
@@ -24,7 +24,7 @@
- Esegue la disinstallazione a livello di utente.
+ Disinstalla lo strumento dalla directory degli strumenti dell'utente corrente.
@@ -64,12 +64,12 @@
- PATH
+ PERCORSO
- The directory containing the tool to uninstall.
+ Directory contenente lo strumento da disinstallare.
- アンインストールするツールの NuGet パッケージ ID。
+ アンインストールするツールの NuGet パッケージ ID。
- ツールをアンインストールします。
+ 現在の開発環境からツールをアンインストールします。
@@ -24,7 +24,7 @@
- ユーザー全体でアンインストールします。
+ 現在のユーザーのツール ディレクトリからツールをアンインストールします。
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ アンインストールするツールが入っているディレクトリ。
- 제거할 도구의 NuGet 패키지 ID입니다.
+ 제거할 도구의 NuGet 패키지 ID입니다.
- 도구를 제거합니다.
+ 현재 개발 환경에서 도구를 제거합니다.
@@ -24,7 +24,7 @@
- 사용자 전체 도구를 제거합니다.
+ 현재 사용자의 도구 디렉터리에서 도구를 제거합니다.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ 제거할 도구를 포함하는 디렉터리입니다.
- Identyfikator pakietu NuGet narzędzia do odinstalowania.
+ Identyfikator pakietu NuGet narzędzia do odinstalowania.
- Odinstalowuje narzędzie.
+ Odinstaluj narzędzie z bieżącego środowiska deweloperskiego.
@@ -24,7 +24,7 @@
- Odinstaluj dla użytkownika.
+ Odinstaluj narzędzie z katalogu narzędzi bieżącego użytkownika.
@@ -64,12 +64,12 @@
- PATH
+ ŚCIEŻKA
- The directory containing the tool to uninstall.
+ Katalog zawierający narzędzie do odinstalowania.
- A ID do pacote NuGet da ferramenta a ser desinstalada.
+ A ID do pacote do NuGet da ferramenta a ser desinstalada.
- Desinstala uma ferramenta.
+ Desinstalar uma ferramenta do ambiente de desenvolvimento atual.
@@ -24,7 +24,7 @@
- Desinstale para todo o usuário.
+ Desinstalar a ferramenta do diretório de ferramentas do usuário atual.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ O diretório que contém a ferramenta a ser desinstalada.
- Идентификатор пакета NuGet удаляемого инструмента.
+ Идентификатор пакета NuGet удаляемого инструмента.
- Удаляет инструмент.
+ Удаление инструмента из текущей среды разработки.
@@ -24,7 +24,7 @@
- Удаление на уровне пользователя.
+ Удаление инструмента из каталога инструментов текущего пользователя.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ Каталог, содержащий удаляемый инструмент.
- Kaldırılacak aracın NuGet Paket Kimliği.
+ Kaldırılacak aracın NuGet Paket Kimliği.
- Bir aracı kaldırır.
+ Bir aracı geçerli geliştirme ortamından kaldırır.
@@ -24,7 +24,7 @@
- Kullanıcı için kaldırın.
+ Aracı geçerli kullanıcının araçlar dizininden kaldırır.
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ Kaldırılacak aracı içeren dizin.
- 要卸载的工具的 NuGet 包 ID。
+ 要卸载的工具的 NuGet 包 ID。
- 卸载工具。
+ 从当前开发环境中卸载工具。
@@ -24,7 +24,7 @@
- 卸载用户范围。
+ 从当前用户的工具目录中卸载该工具。
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ 包含要卸载的工具的目录。
- 要解除安裝之工具的 NuGet 套件識別碼。
+ 要解除安裝之工具的 NuGet 套件識別碼。
- 將工具解除安裝。
+ 從目前的開發環境中,解除安裝工具。
@@ -24,7 +24,7 @@
- 為全部使用者解除安裝。
+ 從目前使用者的工具目錄,解除安裝工具。
@@ -64,12 +64,12 @@
- PATH
+ PATH
- The directory containing the tool to uninstall.
+ 包含要解除安裝之工具的目錄。
- PACKAGE_ID
+ ID_PACCHETTO
- ID pacchetto NuGet dello strumento da aggiornare.
+ ID pacchetto NuGet dello strumento da aggiornare.
@@ -24,7 +24,7 @@
- Aggiorna uno strumento all'ultima versione stabile per l'uso.
+ Aggiorna uno strumento all'ultima versione stabile.
@@ -49,7 +49,7 @@
- Esegue l'aggiornamento a livello di utente.
+ Aggiorna lo strumento nella directory degli strumenti dell'utente corrente.
@@ -89,32 +89,32 @@
- Add an additional NuGet package source to use during the update.
+ Aggiunge un'altra origine pacchetto NuGet da usare durante l'aggiornamento.
- SOURCE
+ ORIGINE
- FILE
+ FILE
- FRAMEWORK
+ FRAMEWORK
- PATH
+ PERCORSO
- The directory containing the tool to update.
+ Directory contenente lo strumento da aggiornare.