merged to resolve conflicts

This commit is contained in:
Harsh Jain 2017-01-07 20:40:50 +05:30
commit 0222e8e850
278 changed files with 1763 additions and 1202 deletions

View file

@ -3,6 +3,7 @@
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="templating" value="https://dotnet.myget.org/F/templating/api/v3/index.json" />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />

View file

@ -4,7 +4,9 @@
"debugType": "portable",
"emitEntryPoint": true
},
"dependencies": {},
"dependencies": {
"Newtonsoft.Json": "9.0.1"
},
"frameworks": {
"net451": {}
},

View file

@ -24,7 +24,7 @@
<Version>1.0.3</Version>
</PackageReference>
<PackageReference Include="NuGet.Frameworks">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="Microsoft.DotNet.Cli.Utils">
<Version>$(SdkNugetVersion)</Version>

View file

@ -0,0 +1,17 @@
using System;
using System.Xml;
namespace ConsoleApplication
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
#if NET20 || NET35 || NET45 || NET461
// Force XmlDocument to be used
var doc = new XmlDocument();
#endif
}
}
}

View file

@ -0,0 +1,22 @@
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {},
"frameworks": {
"net461": {
"frameworkAssemblies": {
"System.Xml": {}
}
},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NetCore.App": {
"version": "1.0.3",
"type": "platform"
}
}
}
}
}

View file

@ -27,7 +27,7 @@
},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NetCore.App": "1.0.1"
"Microsoft.NetCore.App": "1.0.3"
}
}
},

View file

@ -0,0 +1,17 @@
using System;
using System.Xml;
namespace ConsoleApplication
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
#if NET20 || NET35 || NET45 || NET461
// Force XmlDocument to be used
var doc = new XmlDocument();
#endif
}
}
}

View file

@ -0,0 +1,29 @@
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {},
"frameworks": {
"net20": {
"frameworkAssemblies": {
"System.Xml": {}
}
},
"net35": {
"frameworkAssemblies": {
"System.Xml": {}
}
},
"net40": {
"frameworkAssemblies": {
"System.Xml": {}
}
},
"net461": {
"frameworkAssemblies": {
"System.Xml": {}
}
}
}
}

View file

@ -2,7 +2,7 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<ItemGroup>
<BundledSdk Include="NuGet.Build.Tasks.Pack" Version="4.0.0-rc2" />
<BundledSdk Include="NuGet.Build.Tasks.Pack" Version="4.0.0-rc3" />
<BundledSdk Include="Microsoft.NET.Sdk" Version="$(CLI_NETSDK_Version)" />
<BundledSdk Include="Microsoft.NET.Sdk.Web" Version="$(CLI_WEBSDK_Version)" />
<BundledSdk Include="Microsoft.NET.Sdk.Publish" Version="$(CLI_WEBSDK_Version)" />

View file

@ -0,0 +1,39 @@
<Project ToolsVersion="15.0" DefaultTargets="CopyTemplateToOutput">
<!-- workaround for https://github.com/Microsoft/msbuild/issues/885 -->
<!-- renaming the property because the original property is a global property and therefore
cannot be redefined at runtime. -->
<Import Project="Microsoft.DotNet.Cli.tasks" />
<Target Name="CopyTemplateToOutput"
DependsOnTargets="PrepareBundledTemplateProps;
EnsureTemplateRestored;
GetTemplateItemsToCopy"
Inputs="@(TemplateContent)"
Outputs="@(TemplateContent->'$(TemplateLayoutDirectory)/%(RecursiveDir)%(FileName)%(Extension)')">
<Copy SourceFiles="@(TemplateContent)"
DestinationFiles="@(TemplateContent->'$(TemplateLayoutDirectory)/%(RecursiveDir)%(FileName)%(Extension)')" />
<Message Text="Copied template $(TemplatePackageName) from $(TemplateNuPkgPath) to $(TemplateLayoutDirectory)."
Importance="High" />
</Target>
<Target Name="GetTemplateItemsToCopy">
<ItemGroup>
<TemplateContent Include="$(TemplateNuPkgPath)/$(TemplatePackageName.ToLower()).$(TemplatePackageVersion.ToLower()).nupkg" />
</ItemGroup>
</Target>
<Target Name="EnsureTemplateRestored"
Condition="!Exists('$(TemplateNuPkgPath)/$(TemplatePackageName.ToLower()).nuspec')">
<DotNetRestore ToolPath="$(Stage0Directory)"
ProjectPath="$(MSBuildThisFileDirectory)/templates/templates.csproj"
AdditionalParameters="/p:TemplatePackageName=$(TemplatePackageName) /p:TemplatePackageVersion=$(TemplatePackageVersion)" />
</Target>
<Target Name="PrepareBundledTemplateProps">
<PropertyGroup>
<TemplateNuPkgPath>$(NuGetPackagesDir)/$(TemplatePackageName.ToLower())/$(TemplatePackageVersion.ToLower())</TemplateNuPkgPath>
</PropertyGroup>
</Target>
</Project>

View file

@ -0,0 +1,10 @@
<Project ToolsVersion="15.0">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<ItemGroup>
<BundledTemplate Include="Microsoft.DotNet.Common.ItemTemplates" Version="$(TemplateEngineVersion)" />
<BundledTemplate Include="Microsoft.DotNet.Common.ProjectTemplates" Version="$(TemplateEngineVersion)" />
<BundledTemplate Include="Microsoft.DotNet.Test.ProjectTemplates" Version="$(TemplateEngineVersion)" />
<BundledTemplate Include="Microsoft.DotNet.Web.ProjectTemplates" Version="$(TemplateEngineVersion)" />
</ItemGroup>
</Project>

View file

@ -18,6 +18,7 @@
SetupStage;
CompileStage;
PublishSdks;
PublishTemplates;
BuildProjectsForNuGetPackages;
GetNuGetPackagesArchive;" />
@ -263,4 +264,25 @@
Projects="@(SdksToBundle)">
</MSBuild>
</Target>
<Target Name="PublishTemplates"
DependsOnTargets="Prepare">
<ItemGroup>
<TemplatesToBundle Include="build/Microsoft.DotNet.Cli.BundledTemplates.proj">
<Properties>
CLIBuildDll=$(CLIBuildDll);
NuGetPackagesDir=$(NuGetPackagesDir);
TemplateLayoutDirectory=$(SdkOutputDirectory)/Templates;
TemplatePackageName=%(BundledTemplate.Identity);
TemplatePackageVersion=%(BundledTemplate.Version);
Stage0Directory=$(Stage0Directory)
</Properties>
</TemplatesToBundle>
</ItemGroup>
<MSBuild
BuildInParallel="False"
Projects="@(TemplatesToBundle)">
</MSBuild>
</Target>
</Project>

View file

@ -3,8 +3,9 @@
<PropertyGroup>
<CLI_MSBuild_Version>15.1.0-preview-000503-01</CLI_MSBuild_Version>
<CLI_Roslyn_Version>2.0.0-rc3-61212-03</CLI_Roslyn_Version>
<CLI_NETSDK_Version>1.0.0-alpha-20170105-1</CLI_NETSDK_Version>
<CLI_WEBSDK_Version>1.0.0-alpha-20170104-1-189</CLI_WEBSDK_Version>
<CLI_NETSDK_Version>1.0.0-alpha-20170105-5</CLI_NETSDK_Version>
<CLI_WEBSDK_Version>1.0.0-alpha-20170106-1-203</CLI_WEBSDK_Version>
<CLI_TestPlatform_Version>15.0.0-preview-20170106-08</CLI_TestPlatform_Version>
<TemplateEngineVersion>1.0.0-beta1-20170106-79</TemplateEngineVersion>
</PropertyGroup>
</Project>

View file

@ -3,6 +3,7 @@
<Import Project="Microsoft.DotNet.Cli.tasks" />
<Import Project="prepare/CheckPrereqs.targets" />
<Import Project="Microsoft.DotNet.Cli.BundledSdks.props" />
<Import Project="Microsoft.DotNet.Cli.BundledTemplates.props" />
<Import Project="Microsoft.DotNet.Cli.DependencyVersions.props" />
<Target Name="Prepare"

View file

@ -0,0 +1,17 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp1.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="$(TemplatePackageName)">
<Version>$(TemplatePackageVersion)</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View file

@ -1,13 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<Description>Build scripts for dotnet-cli</Description>
<VersionPrefix>1.0.0</VersionPrefix>
<TargetFrameworks>netcoreapp1.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\$(Configuration)</OutputPath>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);portable-net45+win8+wp8+wpa81</PackageTargetFallback>
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);portable-net45+win8+wp8+wpa81</PackageTargetFallback>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\shared-build-targets-utils\shared-build-targets-utils.csproj" />
@ -42,11 +41,16 @@
<Version>7.2.1</Version>
</PackageReference>
<PackageReference Include="NuGet.CommandLine.XPlat">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="Microsoft.Build.Utilities.Core">
<Version>$(CLI_MSBuild_Version)</Version>
</PackageReference>
<!-- This dependency was added due to an issue in restore where a lower version of this package coming from nuget.commandline.xplat
led to an error. This is tracked as NuGet issue : https://github.com/NuGet/Home/issues/4213 -->
<PackageReference Include="Microsoft.Build.Framework">
<Version>$(CLI_MSBuild_Version)</Version>
</PackageReference>
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions">
<Version>1.0.1-beta-000933</Version>
</PackageReference>

View file

@ -49,6 +49,7 @@ namespace Microsoft.DotNet.Cli.Utils
public static readonly string MSBUILD_EXE_PATH = "MSBUILD_EXE_PATH";
public static readonly string ProjectOrSolutionArgumentName = "<PROJECT_OR_SOLUTION>";
public static readonly string ProjectArgumentName = "<PROJECT>";
public static readonly string SolutionArgumentName = "<SLN_FILE>";
}
}

View file

@ -18,16 +18,16 @@
<Version>1.0.1-beta-000933</Version>
</PackageReference>
<PackageReference Include="NuGet.Versioning">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="NuGet.Packaging">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="NuGet.Frameworks">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="NuGet.ProjectModel">
<Version>4.0.0-rc2</Version>
<Version>4.0.0-rc3</Version>
</PackageReference>
<PackageReference Include="Microsoft.Build">
<Version>$(CLI_MSBuild_Version)</Version>

View file

@ -35,12 +35,12 @@
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: hledání souboru prefercliruntime v {1}</target>
<target state="translated">{0}: Hledání souboru prefercliruntime v {1}</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
<source>{0}: attempting to resolve {1}</source>
<target state="translated">{0}: pokus o vyřešení {1}</target>
<target state="translated">{0}: Pokus o vyřešení {1}</target>
<note />
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
@ -50,7 +50,7 @@
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
<source>{0}: invalid commandResolverArguments</source>
<target state="translated">{0}: neplatné hodnoty commandResolverArguments</target>
<target state="translated">{0}: Neplatné hodnoty commandResolverArguments</target>
<note />
</trans-unit>
<trans-unit id="DoesNotExist">
@ -65,7 +65,7 @@
</trans-unit>
<trans-unit id="ToolLibraryFound">
<source>{0}: tool library found {1}</source>
<target state="translated">{0}: nalezena knihovna nástrojů {1}</target>
<target state="translated">{0}: Nalezena knihovna nástrojů {1}</target>
<note />
</trans-unit>
<trans-unit id="MSBuildExePath">
@ -75,7 +75,7 @@
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: cesta k projektu MSBuildu = {1}</target>
<target state="translated">{0}: Cesta k projektu MSBuildu = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
@ -100,19 +100,19 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: pokus o vyřešení specifikace příkazu nástroje {1}</target>
<target state="translated">{0}: Pokus o vyřešení specifikace příkazu nástroje {1}</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
<source>{0}: nuget packages root:
{1}</source>
<target state="translated">{0}: kořen balíčků NuGet:
<target state="translated">{0}: Kořen balíčků NuGet:
{1}</target>
<note />
</trans-unit>
<trans-unit id="FoundToolLockFile">
<source>{0}: found tool lockfile at : {1}</source>
<target state="translated">{0}: zjištěný lockfile nástroje na: {1}</target>
<target state="translated">{0}: Zjištěný lockfile nástroje na: {1}</target>
<note />
</trans-unit>
<trans-unit id="LibraryNotFoundInLockFile">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Čeká se na připojení ladicího programu. Pokračujte stisknutím tlačítka ENTER.</target>
<target state="translated">Čeká se na připojení ladicího programu. Pokračujte stisknutím ENTER.</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -5,7 +5,7 @@
<group id="src/Microsoft.DotNet.Cli.Utils/LocalizableStrings.resx" />
<trans-unit id="MalformedText">
<source>Malformed command text '{0}'</source>
<target state="translated">Fehlerhafter Befehlstext '{0}'</target>
<target state="translated">Fehlerhafter Befehlstext "{0}".</target>
<note />
</trans-unit>
<trans-unit id="BuildOutputPathDoesNotExist">
@ -35,7 +35,7 @@
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: Suche nach prefercliruntime-Datei unter `{1}`</target>
<target state="translated">{0}: Suche nach prefercliruntime-Datei unter {1}</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -80,7 +80,7 @@
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
<source>Specify which project file to use because this '{0}' contains more than one project file.</source>
<target state="translated">Geben Sie an, welche Projektdatei verwendet werden soll, weil '{0}' mehrere Projektdateien enthält.</target>
<target state="translated">Geben Sie an, welche Projektdatei verwendet werden soll, weil "{0}" mehrere Projektdateien enthält.</target>
<note />
</trans-unit>
<trans-unit id="DidNotFindProject">
@ -90,23 +90,23 @@
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
<source>{0}: resolving commandspec from {1} Tool Libraries.</source>
<target state="translated">{0}: commandSpec aus {1} Toolbibliotheken wird aufgelöst.</target>
<target state="translated">{0}: commandspec aus {1} Toolbibliotheken wird aufgelöst.</target>
<note />
</trans-unit>
<trans-unit id="FailedToResolveCommandSpec">
<source>{0}: failed to resolve commandspec from library.</source>
<target state="translated">{0}: commandSpec aus Bibliothek konnte nicht aufgelöst werden.</target>
<target state="translated">{0}: commandspec aus Bibliothek konnte nicht aufgelöst werden.</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: Versuch, commandSpec aus Tool {1} aufzulösen</target>
<target state="translated">{0}: Versuch, commandspec aus Tool {1} aufzulösen.</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
<source>{0}: nuget packages root:
{1}</source>
<target state="translated">{0}: NuGet-Paketestamm:
<target state="translated">{0}: NuGet-Paketstamm:
{1}</target>
<note />
</trans-unit>
@ -122,27 +122,27 @@
</trans-unit>
<trans-unit id="AttemptingToCreateCommandSpec">
<source>{0}: attempting to create commandspec</source>
<target state="translated">{0}: Versuch, commandSpec zu erstellen</target>
<target state="translated">{0}: Versuch, commandspec zu erstellen</target>
<note />
</trans-unit>
<trans-unit id="CommandSpecIsNull">
<source>{0}: commandSpec is null.</source>
<target state="translated">{0}: commandSpec ist NULL.</target>
<target state="translated">{0}: commandspec ist NULL.</target>
<note />
</trans-unit>
<trans-unit id="ExpectDepsJsonAt">
<source>{0}: expect deps.json at: {1}</source>
<target state="translated">{0}: „deps.json“ vermutet unter: {1}</target>
<target state="translated">{0}: "deps.json" vermutet unter: {1}</target>
<note />
</trans-unit>
<trans-unit id="GeneratingDepsJson">
<source>Generating deps.json at: {0}</source>
<target state="translated">„deps.json“ wird erzeugt unter: {0}</target>
<target state="translated">"deps.json" wird erzeugt unter: {0}</target>
<note />
</trans-unit>
<trans-unit id="UnableToGenerateDepsJson">
<source>unable to generate deps.json, it may have been already generated: {0}</source>
<target state="translated">„deps.json“ kann nicht erzeugt werden; sie wurde vielleicht bereits erzeugt: {0}</target>
<target state="translated">"deps.json" kann nicht erzeugt werden; sie wurde vielleicht bereits erzeugt: {0}</target>
<note />
</trans-unit>
<trans-unit id="UnableToDeleteTemporaryDepsJson">
@ -152,12 +152,12 @@
</trans-unit>
<trans-unit id="VersionForPackageCouldNotBeResolved">
<source>Version for package `{0}` could not be resolved.</source>
<target state="translated">Version für Paket `{0}` konnte nicht aufgelöst werden.</target>
<target state="translated">Version für Paket "{0}" konnte nicht aufgelöst werden.</target>
<note />
</trans-unit>
<trans-unit id="FileNotFound">
<source>File not found `{0}`.</source>
<target state="translated">Datei nicht gefunden: `{0}`.</target>
<target state="translated">Datei nicht gefunden: "{0}".</target>
<note />
</trans-unit>
<trans-unit id="ProjectNotRestoredOrRestoreFailed">
@ -167,12 +167,12 @@
</trans-unit>
<trans-unit id="NoExecutableFoundMatchingCommand">
<source>No executable found matching command "{0}"</source>
<target state="translated">Keine ausführbare Datei zum Befehl „{0}“ gefunden.</target>
<target state="translated">Keine ausführbare Datei zum Befehl "{0}" gefunden.</target>
<note />
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Warten auf Anhängen des Debuggers. EINGABE drücken, um fortzufahren.</target>
<target state="translated">Auf das Anfügen des Debuggers wird gewartet. Drücken Sie zum Fortsetzen die EINGABETASTE.</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -35,7 +35,7 @@
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: buscando el archivo prefercliruntime en "{1}"</target>
<target state="translated">{0}: Buscando el archivo prefercliruntime en "{1}"</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -45,7 +45,7 @@
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
<source>{0}: Did not find a matching project {1}.</source>
<target state="translated">{0}: no se encontró un proyecto coincidente {1}.</target>
<target state="translated">{0}: No se encontró un proyecto coincidente {1}.</target>
<note />
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
@ -75,7 +75,7 @@
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: ruta del proyecto MSBuild = {1}</target>
<target state="translated">{0}: Ruta del proyecto MSBuild = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: intentando resolver especificaciones de comando desde la herramienta {1}</target>
<target state="translated">{0}: Intentando resolver especificaciones de comando desde la herramienta {1}</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Esperando anexar el depurador. Presione ENTRAR para continuar</target>
<target state="translated">Esperando a que se asocie el depurador. Presione ENTRAR para continuar.</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0} : tentative de résolution de la spécification de commande à partir de l'outil {1}</target>
<target state="translated">{0} : Tentative de résolution de la spécification de commande à partir de l'outil {1}</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">En attente d'attachement du débogueur. Appuyez sur ENTRÉE pour continuer</target>
<target state="translated">En attente de l'attachement du débogueur. Appuyez sur Entrée pour continuer</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -35,7 +35,7 @@
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: `{1}` で prefercliruntime ファイルを検索しています</target>
<target state="translated">{0}:`{1}` で prefercliruntime ファイルを検索しています</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -45,7 +45,7 @@
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
<source>{0}: Did not find a matching project {1}.</source>
<target state="translated">{0}: 一致するプロジェクト {1}.が見つかりませんでした。</target>
<target state="translated">{0}:一致するプロジェクト {1}.が見つかりませんでした。</target>
<note />
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
@ -70,12 +70,12 @@
</trans-unit>
<trans-unit id="MSBuildExePath">
<source>{0}: MSBUILD_EXE_PATH = {1}</source>
<target state="translated">{0}: MSBUILD_EXE_PATH = {1}</target>
<target state="translated">{0}:MSBUILD_EXE_PATH = {1}</target>
<note />
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: MSBuild プロジェクト パス = {1}</target>
<target state="translated">{0}:MSBuild project path = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
@ -85,7 +85,7 @@
</trans-unit>
<trans-unit id="DidNotFindProject">
<source>{0}: ProjectFactory did not find Project.</source>
<target state="translated">{0}: ProjectFactory でプロジェクトが見つかりませんでした。</target>
<target state="translated">{0}:ProjectFactory でプロジェクトが見つかりませんでした。</target>
<note />
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: ツール {1} から commandspec を解決しようとしています</target>
<target state="translated">{0}:ツール {1} から commandspec を解決しようとしています</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">デバッガーのアタッチを待機しています。続行するには Enter キーを押してください</target>
<target state="translated">デバッガーのアタッチを待っています...続行するには、ENTER キーを押してください</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -65,7 +65,7 @@
</trans-unit>
<trans-unit id="ToolLibraryFound">
<source>{0}: tool library found {1}</source>
<target state="translated">{0}: {1} 도구 라이브러리가 발견됨</target>
<target state="translated">{0}: 도구 라이브러리가 발견됨({1})</target>
<note />
</trans-unit>
<trans-unit id="MSBuildExePath">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">연결할 디버거를 대기 중입니다. 계속하려면 ENTER 키를 누르세요.</target>
<target state="translated">디버거가 연결될 때까지 대기하는 중입니다. 계속하려면 &lt;Enter&gt; 키를 누르세요.</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -90,7 +90,7 @@
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
<source>{0}: resolving commandspec from {1} Tool Libraries.</source>
<target state="translated">{0}: Rozpoznawanie elementu commandspec z bibliotek narzędzia {1}.</target>
<target state="translated">{0}: Rozpoznawanie elementu commandspec z bibliotek narzędzi {1}.</target>
<note />
</trans-unit>
<trans-unit id="FailedToResolveCommandSpec">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Oczekiwanie na dołączenie debugera. Naciśnij klawisz ENTER, aby kontynuować</target>
<target state="translated">Trwa oczekiwanie na dołączenie debugera. Naciśnij klawisz ENTER, aby kontynuować</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -35,7 +35,7 @@
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: procurando o arquivo prefercliruntime em '{1}'</target>
<target state="translated">{0}: Procurando o arquivo prefercliruntime em '{1}'</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -45,7 +45,7 @@
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
<source>{0}: Did not find a matching project {1}.</source>
<target state="translated">{0}: não encontrou um projeto {1} correspondente.</target>
<target state="translated">{0}: Não encontrou um projeto {1} correspondente.</target>
<note />
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
@ -75,7 +75,7 @@
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: caminho de projeto do MSBuild = {1}</target>
<target state="translated">{0}: Caminho de projeto do MSBuild = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
@ -85,7 +85,7 @@
</trans-unit>
<trans-unit id="DidNotFindProject">
<source>{0}: ProjectFactory did not find Project.</source>
<target state="translated">{0}: ProjectFactory não encontrou o Projeto.</target>
<target state="translated">{0}: O ProjectFactory não encontrou o Projeto.</target>
<note />
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
@ -95,18 +95,18 @@
</trans-unit>
<trans-unit id="FailedToResolveCommandSpec">
<source>{0}: failed to resolve commandspec from library.</source>
<target state="translated">{0}: falha ao resolver commandspec por meio da biblioteca.</target>
<target state="translated">{0}: falha ao resolver commandspec da biblioteca.</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: tentando resolver commandspec por meio da ferramenta {1}</target>
<target state="translated">{0}: Tentando resolver a especificação de comando da ferramenta {1}</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
<source>{0}: nuget packages root:
{1}</source>
<target state="translated">{0}: raiz de pacotes NuGet:
<target state="translated">{0}: raiz de pacores nuget:
{1}</target>
<note />
</trans-unit>
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Aguardando o depurador anexar. Pressione ENTER para continuar</target>
<target state="translated">Esperando o depurador se conectar. Pressione ENTER para continuar</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -30,12 +30,12 @@
</trans-unit>
<trans-unit id="UnableToLocateDotnetMultiplexer">
<source>Unable to locate dotnet multiplexer</source>
<target state="translated">Не удается найти мультиплексор dotnet.</target>
<target state="translated">Не удалось найти мультиплексор dotnet</target>
<note />
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: поиск файла prefercliruntime в "{1}"</target>
<target state="translated">{0}: Поиск файла prefercliruntime "{1}"</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -45,12 +45,12 @@
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
<source>{0}: Did not find a matching project {1}.</source>
<target state="translated">{0}: не найден подходящий проект {1}.</target>
<target state="translated">{0}: Не найден соответствующий проект {1}.</target>
<note />
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
<source>{0}: invalid commandResolverArguments</source>
<target state="translated">{0}: недопустимый commandResolverArguments</target>
<target state="translated">{0}: недопустимое значение commandResolverArguments</target>
<note />
</trans-unit>
<trans-unit id="DoesNotExist">
@ -65,7 +65,7 @@
</trans-unit>
<trans-unit id="ToolLibraryFound">
<source>{0}: tool library found {1}</source>
<target state="translated">{0}: найдена библиотека средств {1}.</target>
<target state="translated">{0}: найдена библиотека средств {1}</target>
<note />
</trans-unit>
<trans-unit id="MSBuildExePath">
@ -75,7 +75,7 @@
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: путь проекта MSBuild — {1}</target>
<target state="translated">{0}: путь проекта MSBuild = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
@ -85,7 +85,7 @@
</trans-unit>
<trans-unit id="DidNotFindProject">
<source>{0}: ProjectFactory did not find Project.</source>
<target state="translated">{0}: фабрика проектов не нашла проект.</target>
<target state="translated">{0}: Фабрика проектов не нашла проект.</target>
<note />
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Ожидание подключения отладчика. Для продолжения нажмите клавишу ВВОД.</target>
<target state="translated">Ожидание подключения отладчика. Нажмите ВВОД, чтобы продолжить</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: {1} aracından commandspec çözümlenmeye çalışılıyor</target>
<target state="translated">{0}: {1} aracından command.spec çözümlenmeye çalışılıyor</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">Hata ayıklayıcının eklenmesi bekleniyor. Devam etmek için ENTER tuşuna basın</target>
<target state="translated">Hata ayıklayıcısının eklenmesi bekleniyor. Devam etmek için ENTERa basın</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -65,7 +65,7 @@
</trans-unit>
<trans-unit id="ToolLibraryFound">
<source>{0}: tool library found {1}</source>
<target state="translated">{0}: 找到工具库 {1}</target>
<target state="translated">{0}: 找到工具库 {1}</target>
<note />
</trans-unit>
<trans-unit id="MSBuildExePath">
@ -90,7 +90,7 @@
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
<source>{0}: resolving commandspec from {1} Tool Libraries.</source>
<target state="translated">{0}: 从 {1} 工具库解析 commandspec。</target>
<target state="translated">{0}: 正在从 {1} 工具库解析 commandspec。</target>
<note />
</trans-unit>
<trans-unit id="FailedToResolveCommandSpec">
@ -100,13 +100,13 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: 尝试从工具 {1} 解析命令 spec</target>
<target state="translated">{0}: 正在尝试从工具 {1} 解析命令 spec</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
<source>{0}: nuget packages root:
{1}</source>
<target state="translated">{0}: nuget 包根目录:
<target state="translated">{0}: nuget 包根目录:
{1}</target>
<note />
</trans-unit>
@ -172,7 +172,7 @@
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">等待附加调试器。按 Enter 继续</target>
<target state="translated">正在等待调试程序附加。按 Enter 继续操作</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -30,12 +30,12 @@
</trans-unit>
<trans-unit id="UnableToLocateDotnetMultiplexer">
<source>Unable to locate dotnet multiplexer</source>
<target state="translated">找不到 dotnet multiplexer</target>
<target state="translated">找不到 dotnet 多工器</target>
<note />
</trans-unit>
<trans-unit id="LookingForPreferCliRuntimeFile">
<source>{0}: Looking for prefercliruntime file at `{1}`</source>
<target state="translated">{0}: 正在於 `{1}` 尋找 prefercliruntime 檔</target>
<target state="translated">{0}:正於 `{1}` 尋找 prefercliruntime 檔案</target>
<note />
</trans-unit>
<trans-unit id="AttemptingToResolve">
@ -45,7 +45,7 @@
</trans-unit>
<trans-unit id="DidNotFindAMatchingProject">
<source>{0}: Did not find a matching project {1}.</source>
<target state="translated">{0}: 未找到相符的專案 {1}。</target>
<target state="translated">{0}:未找到相符的專案 {1}。</target>
<note />
</trans-unit>
<trans-unit id="InvalidCommandResolverArguments">
@ -70,22 +70,22 @@
</trans-unit>
<trans-unit id="MSBuildExePath">
<source>{0}: MSBUILD_EXE_PATH = {1}</source>
<target state="translated">{0}: MSBUILD_EXE_PATH = {1}</target>
<target state="translated">{0}:MSBUILD_EXE_PATH = {1}</target>
<note />
</trans-unit>
<trans-unit id="MSBuildProjectPath">
<source>{0}: MSBuild project path = {1}</source>
<target state="translated">{0}: MSBuild 專案路徑 = {1}</target>
<target state="translated">{0}:MSBuild 專案路徑 = {1}</target>
<note />
</trans-unit>
<trans-unit id="MultipleProjectFilesFound">
<source>Specify which project file to use because this '{0}' contains more than one project file.</source>
<target state="translated">指定要使用的專案檔,因為這個 '{0}' 包含多個專案檔。</target>
<target state="translated">因為這個 '{0}' 包含多個專案檔,所以請指定要使用的專案檔。</target>
<note />
</trans-unit>
<trans-unit id="DidNotFindProject">
<source>{0}: ProjectFactory did not find Project.</source>
<target state="translated">{0}: ProjectFactory 未找到專案。</target>
<target state="translated">{0}:ProjectFactory 未找到專案。</target>
<note />
</trans-unit>
<trans-unit id="ResolvingCommandSpec">
@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="AttemptingToResolveCommandSpec">
<source>{0}: Attempting to resolve command spec from tool {1}</source>
<target state="translated">{0}: 正在嘗試從工具 {1} 解析 command spec</target>
<target state="translated">{0}:正在嘗試從工具 {1} 解析 command spec</target>
<note />
</trans-unit>
<trans-unit id="NuGetPackagesRoot">
@ -167,12 +167,12 @@
</trans-unit>
<trans-unit id="NoExecutableFoundMatchingCommand">
<source>No executable found matching command "{0}"</source>
<target state="translated">沒有與命令 "{0}" 相符的可執行檔</target>
<target state="translated">未找到與命令 "{0}" 相符的可執行檔</target>
<note />
</trans-unit>
<trans-unit id="WaitingForDebuggerToAttach">
<source>Waiting for debugger to attach. Press ENTER to continue</source>
<target state="translated">正在等候附加偵錯工具。按 ENTER 繼續進行</target>
<target state="translated">正在等候偵錯工具進行連結。按 ENTER 繼續</target>
<note />
</trans-unit>
<trans-unit id="ProcessId">

View file

@ -17,19 +17,19 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Vítejte v .NET Core!
<target state="translated">Vítá vás .NET Core!
---------------------
Další informace o .NET Core najdete na adrese https://aka.ms/dotnet-docs. K zobrazení dostupných příkazů použijte příkaz dotnet --help nebo přejděte na https://aka.ms/dotnet-cli-docs.
Další informace o .NET Core najdete na https://aka.ms/dotnet-docs. Dostupné příkazy si zobrazíte pomocí dotnet --help, případně přejděte na https://aka.ms/dotnet-cli-docs.
Telemetrie
--------------
Nástroje .NET Core shromažďují data o využití, která pomáhají zlepšit vaši práci. Tato data jsou anonymní a nezahrnují argumenty příkazového řádku. Data shromažďuje Microsoft a sdílí je s komunitou uživatelů.
Pokud chcete telemetrii vypnout, nastavte proměnnou prostředí DOTNET_CLI_TELEMETRY_OPTOUT na 1. Můžete k tomu použít své oblíbené prostředí.
Další informace o telemetrických nástrojích .NET Core najdete na adrese https://aka.ms/dotnet-cli-telemetry.
Nástroje .NET Core shromažďují data o využití s cílem vylepšit vaše prostředí. Data jsou anonymní a nezahrnují argumenty příkazového řádku. Data shromažďuje Microsoft, který je sdílí s komunitou.
S telemetrií můžete vyjádřit výslovný nesouhlas, a to nastavením proměnné prostředí DOTNET_CLI_TELEMETRY_OPTOUT na 1 prostřednictvím vašeho oblíbeného rozhraní.
Další informace o telemetrii nástrojů .NET Core si můžete přečíst na webu https://aka.ms/dotnet-cli-telemetry.
Konfigurace...
Probíhá konfigurace...
-------------------
Je spuštěný příkaz, který na začátku naplní mezipaměť místního balíčku, zlepší rychlost obnovení a umožní offline přístup. Dokončení příkazu zabere necelou minutu a stačí ho spustit jen jednou.</target>
Běží příkaz pro počáteční naplnění vaší místní mezipaměti balíčků, aby se vylepšila rychlost obnovování a umožnil se offline přístup. Provádění tohoto příkazu může trvat až minutu a proběhne jen jednou.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -19,17 +19,17 @@ Configuring...
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Willkommen bei .NET Core!
---------------------
Erfahren Sie mehr über .NET Core unter https://aka.ms/dotnet-docs. Mit „dotnet --help“ können Sie die verfügbaren Befehle anzeigen, oder rufen Sie https://aka.ms/dotnet-cli-docs auf.
Weitere Informationen zu .NET Core finden Sie unter https://aka.ms/dotnet-docs. Verwenden Sie "dotnet --help", um die verfügbaren Befehle anzuzeigen, oder wechseln Sie zu https://aka.ms/dotnet-cli-docs.
Telemetrie
--------------
Die .NET Core-Tools sammeln Nutzungsdaten, um die Benutzerfreundlichkeit zu verbessern. Die Daten sind anonym und enthalten keine Befehlszeilenargumente. Sie werden von Microsoft gesammelt und für die Community freigegeben.
Sie können die Telemetrie deaktivieren, indem Sie die Umgebungsvariable DOTNET_CLI_TELEMETRY_OPTOUT in einer Shell Ihrer Wahl auf 1 setzen.
Weitere Informationen über die Telemetrie der .NET Core-Tools finden Sie unter https://aka.ms/dotnet-cli-telemetry.
Über die .NET Core-Tools werden Nutzungsdaten erfasst, damit wir die Benutzeroberfläche weiter für Sie verbessern können. Die Daten sind anonym und enthalten keine Befehlszeilenargumente. Die Daten werden von Microsoft gesammelt und mit der Community geteilt.
Sie können die Erfassung von Telemetriedaten deaktivieren, indem Sie die Umgebungsvariable DOTNET_CLI_TELEMETRY_OPTOUT mithilfe Ihrer bevorzugten Shell auf 1 festlegen.
Weitere Informationen zur Telemetrie der .NET Core-Tools finden Sie unter https://aka.ms/dotnet-cli-telemetry.
Konfiguration
Konfiguration wird durchgeführt...
-------------------
Um Ihren lokalen Paketcache anfänglich zu füllen, die Wiederherstellungsgeschwindigkeit zu verbessern und den Offlinezugriff zu aktivieren, wird ein Befehl ausgeführt. Die Ausführung dieses Befehls dauert maximal eine Minute und geschieht nur einmal.</target>
Ein Befehl wird ausgeführt, um Ihren lokalen Paketcache erstmals aufzufüllen, die Wiederherstellungsgeschwindigkeit zu verbessern und Onlinezugriff zu ermöglichen. Die Ausführung dieses Befehls nimmt bis zu einer Minute in Anspruch und wird einmalig ausgeführt.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -17,19 +17,19 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Bienvenido a .NET Core
<target state="translated">Esto es .NET Core
---------------------
Obtenga más información sobre .NET Core en https://aka.ms/dotnet-docs. Use dotnet --help para ver los comandos disponibles o vaya a https://aka.ms/dotnet-cli-docs.
Más información sobre .NET Core en https://aka.ms/dotnet-docs. Use dotnet --help para ver los comandos disponibles o vaya a https://aka.ms/dotnet-cli-docs.
Telemetría
--------------
Las herramientas de .NET Core recopilan datos de uso con el fin de mejorar su experiencia. Los datos son anónimos y no incluyen argumentos de la línea de comandos. Microsoft recopila los datos y los comparte con la comunidad.
Si desea optar por no participar en la telemetría, establezca una variable de entorno DOTNET_CLI_TELEMETRY_OPTOUT en 1 con el shell de su preferencia.
Puede leer más información sobre la telemetría de las herramientas de .NET Core en https://aka.ms/dotnet-cli-telemetry.
Las herramientas de .NET Core recopilan datos de uso para mejorar su experiencia. Los datos son anónimos y no incluyen los argumentos de la línea de comandos. Microsoft recopila y comparte los datos con la comunidad.
Puede desactivar la telemetría estableciendo una variable de entorno DOTNET_CLI_TELEMETRY_OPTOUT en 1 utilizando su shell favorito.
Puede leer más sobre la telemetría de las herramientas de .NET Core en https://aka.ms/dotnet-cli-telemetry.
Configurando...
-------------------
Un comando se ejecuta para rellenar inicialmente la caché de paquete local a fin de mejorar la velocidad de restauración y permitir el acceso sin conexión. Este comando demorará hasta un minuto para completarse y solo sucederá una vez.</target>
Se está ejecutando un comando para rellenar inicialmente la memoria caché de paquetes local, para mejorar la velocidad de restauración y habilitar el acceso sin conexión. Este comando tardará hasta un minuto en completarse y solo ocurrirá una vez.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -19,17 +19,17 @@ Configuring...
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Bienvenue dans .NET Core !
---------------------
En savoir plus sur .NET Core @ https://aka.ms/dotnet-docs. Utilisez dotnet --help pour voir les commandes disponibles, ou accédez à https://aka.ms/dotnet-cli-docs.
En savoir plus sur .NET Core à la page https://aka.ms/dotnet-docs. Utilisez dotnet --help pour voir les commandes disponibles ou accédez à la page https://aka.ms/dotnet-cli-docs.
Télémétrie
--------------
Les outils .NET Core collectent des données d'utilisation pour améliorer votre expérience utilisateur. Ces données sont anonymes et n'incluent aucun argument de ligne de commande. Les données sont collectées par Microsoft et partagées par la communauté.
Vous pouvez refuser l'adhésion à la télémétrie en assignant la valeur 1 à la variable d'environnement DOTNET_CLI_TELEMETRY_OPTOUT via l'interpréteur de commandes de votre choix.
Pour plus d'informations sur la télémétrie des outils .NET Core, consultez https://aka.ms/dotnet-cli-telemetry.
Les outils .NET Core permettent de collecter les données sur l'utilisation afin d'améliorer votre expérience. Les données sont anonymes et n'incluent pas d'arguments de ligne de commande. Les données sont collectées par Microsoft et partagées avec la communauté.
Vous pouvez vous désinscrire de la télémétrie en définissant une variable d'environnement DOTNET_CLI_TELEMETRY_OPTOUT sur 1 à l'aide de l'interpréteur de votre choix.
Pour en savoir plus sur la télémétrie des outils .NET Core, consultez la page https://aka.ms/dotnet-cli-telemetry.
Configuration en cours...
Configuration...
-------------------
Une commande s'exécute pour remplir votre cache de package local, améliorer la vitesse de restauration et activer l'accès hors connexion. L'exécution de cette commande peut prendre jusqu'à une minute et n'a lieu qu'une seule fois.</target>
La commande qui est exécutée remplit initialement votre cache de package local afin d'améliorer la vitesse de restauration et d'activer l'accès hors connexion. L'exécution de cette commande dure une minute et ne se produit qu'une seule fois.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -19,17 +19,17 @@ Configuring...
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">.NET Core へようこそ!
---------------------
.NET Core の詳細については、https://aka.ms/dotnet-docs を参照してください。利用可能なコマンドを参照するには、dotnet --help を使用するか、https://aka.ms/dotnet-cli-docs にアクセスしてください。
.NET Core について詳しくは、https://aka.ms/dotnet-docs をご覧ください。dotnet --help を使って使用可能なコマンドを確認するか、https://aka.ms/dotnet-cli-docs をご覧ください。
テレメトリ
--------------
.NET Core ツールは、お客様のエクスペリエンス向上のために利用状況データを収集します。データは匿名であり、コマンドライン引数は含まれません。データは Microsoft によって収集され、コミュニティと共有されます。
お好きなシェルを使用して DOTNET_CLI_TELEMETRY_OPTOUT 環境変数を 1 に設定すると、テレメトリを解除できます。
.NET Core ツールのテレメトリの詳細については、https://aka.ms/dotnet-cli-telemetry でお読みいただけます
.NET Core ツールは、操作性を向上させるために利用状況データを収集します。データは匿名で、コマンドライン引数が含まれません。データは Microsoft によって収集され、コミュニティと共有されます。
テレメトリを無効にするには、お好きなシェルを使用して、DOTNET_CLI_TELEMETRY_OPTOUT 環境変数を 1 に設定します。
.NET Core ツールのテレメトリについて詳しくは、https://aka.ms/dotnet-cli-telemetry をお読みください
構成...
構成...
-------------------
復元の高速化とオフライン アクセスの有効化のため、コマンドを実行してローカル パッケージ キャッシュを最初に設定しています。このコマンドは完了までに 1 分ほどかかりますが、設定が必要なのは最初の1回のみです。</target>
ローカル パッケージ キャッシュを最初に設定し、復元速度を向上させ、オフライン アクセスを可能にするため、コマンドを実行しています。このコマンドは 1 回だけ実行され、最大 1 分かかる場合があります。</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -17,7 +17,7 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">.NET Core를 시작합니다!
<target state="translated">NET Core를 시작합니다!
---------------------
.NET Core에 대한 자세한 내용은 https://aka.ms/dotnet-docs를 참조하세요. 사용 가능한 명령을 보려면 dotnet --help를 사용하거나 https://aka.ms/dotnet-cli-docs를 방문하세요.
@ -29,7 +29,7 @@ A command is running to initially populate your local package cache, to improve
구성 중...
-------------------
초기에 로컬 패키지 캐시를 채우고, 복원 속도를 개선하고, 오프라인 액세스를 사용하도록 설정하기 위한 명령을 실행 중입니다. 완료하는 데 1분 정도 소요되며 한 번만 실행됩니다.</target>
초기에 로컬 패키지 캐시를 채우고, 복원 속도를 개선하고, 오프라인 액세스를 사용하도록 설정하기 위한 명령을 실행 중입니다. 완료하는 데 최대 1분이 소요되며 한 번만 실행됩니다.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -19,17 +19,17 @@ Configuring...
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Bem-vindo ao .NET Core!
---------------------
Saiba mais sobre o .NET Core em https://aka.ms/dotnet-docs. Use dotnet --help para ver os comandos disponíveis ou acesse https://aka.ms/dotnet-cli-docs.
Saiba mais sobre o .NET Core @ https://aka.ms/dotnet-docs. Use o dotnet --help para ver comandos disponíveis ou ir para https://aka.ms/dotnet-cli-docs.
Telemetria
--------------
As ferramentas do .NET Core coletam dados de uso para melhorar sua experiência. Os dados são anônimos e não incluem argumentos de linha de comando. Os dados são coletados pela Microsoft e compartilhados com a comunidade.
É possível recusar a telemetria definindo uma variável de ambiente DOTNET_CLI_TELEMETRY_OPTOUT como 1 usando seu shell favorito.
Leia mais sobre a telemetria das ferramentas do .NET Core em https://aka.ms/dotnet-cli-telemetry.
As ferramentas do .NET Core coletam dados de uso para melhorar sua experiência. Os dados são anônimos e não incluem argumentos da linha de comando. Os dados são coletados pela Microsoft e compartilhados com a comunidade.
Você pode sair da telemetria configurando uma variável de ambiente DOTNET_CLI_TELEMETRY_OPTOUT para 1 usando seu shell favorito.
Você pode ler mais sobre a telemeria de ferramentas do .NET Core em https://aka.ms/dotnet-cli-telemetry.
Configurando...
-------------------
Um comando está sendo executado para popular inicialmente o cache do pacote local, a fim de melhorar a velocidade de restauração e habilitar o acesso offline. Esse comando levará até um minuto para ser concluído e só ocorrerá uma vez.</target>
Um comando está sendo executado para preencher inicialmente seu cache de pacote local, para melhorar a velocidade de restauração e permitir acesso offline. Esse comando levará um minuto para ser concluído e acontecerá somente uma vez.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -17,19 +17,19 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">Добро пожаловать в .NET Core!
<target state="translated">Вас приветствует .NET Core!
---------------------
Дополнительные сведения о .NET Core можно получить по адресу https://aka.ms/dotnet-docs. Для просмотра доступных команд используйте dotnet --help или перейдите на страницу https://aka.ms/dotnet-cli-docs.
Дополнительные сведения о .NET Core: https://aka.ms/dotnet-docs. Используйте dotnet --help, чтобы просмотреть доступные команды, или перейдите на сайт https://aka.ms/dotnet-cli-docs.
Телеметрия
--------------
Средства .NET Core собирают данные об использовании для улучшения взаимодействия с пользователем. Эти данные анонимны и не включают в себя аргументы командной строки. Сбор данных осуществляется корпорацией Майкрософт, которая предоставляет их сообществу.
Вы можете явно отказаться от телеметрии, присвоив переменной среды DOTNET_CLI_TELEMETRY_OPTOUT значение 1 с помощью предпочитаемой оболочки.
Дополнительные сведения о телеметрии в средствах .NET Core см. по адресу https://aka.ms/dotnet-cli-telemetry.
Средства .NET Core собирают данные об использовании для повышения качества взаимодействия. Данные анонимны и не включают аргументы командной строки. Данные собирает корпорация Майкрософт и предоставляет их сообществу.
Вы можете отказаться от телеметрии, задав переменную среды DOTNET_CLI_TELEMETRY_OPTOUT равной 1, используя предпочитаемую оболочку.
Вы можете подробнее ознакомиться со средствами сбора телеметрии .NET Core: https://aka.ms/dotnet-cli-telemetry.
Настройка...
Идет настройка...
-------------------
Выполняется команда для изначального заполнения локального кэша пакетов, повышения скорости восстановления и обеспечения автономного доступа. Ее выполнение может занять до одной минуты и имеет единоразовый характер.</target>
Выполняется команда начального заполнения локального кэша пакетов для повышения скорости восстановления и обеспечения автономного доступа. Это займет около минуты; команда выполняется только один раз.</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -17,19 +17,19 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
Configuring...
-------------------
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">欢迎使用 .NET Core
<target state="translated">欢迎使用 .NET Core!
---------------------
访问 https://aka.ms/dotnet-docs,可了解有关 .NET Core 的详细信息。使用 dotnet --help 查看可用命令或转到 https://aka.ms/dotnet-cli-docs。
若要详细了解 .NET Core访问 https://aka.ms/dotnet-docs。使用 dotnet --help 查看可用命令或转到 https://aka.ms/dotnet-cli-docs。
遥测
--------------
.NET Core 工具收集使用数据以改善用户体验。数据是匿名的,不包括命令行参数。数据由 Microsoft 收集并与社区共享。
使用你青睐的 shell 将 DOTNET_CLI_TELEMETRY_OPTOUT 环境变量设置为 1选择停止遥测。
可访问 https://aka.ms/dotnet-cli-telemetry阅读有关 .NET Core 工具遥测的详细信息
.NET Core 收集使用情况数据,以便改善用户体验。数据是匿名的且不包含命令行参数。数据由 Microsoft 收集,并与社区共享。
选择使用你最喜爱的 shell 将 DOTNET_CLI_TELEMETRY_OPTOUT 环境变量设置为 1从而退出遥测。
若要深入了解 .NET Core 工具遥测,请访问 https://aka.ms/dotnet-cli-telemetry
正在配置...
-------------------
正在运行命令以初始填充本地软件包缓存、提高还原速度并启用脱机访问。此命令将需要一分钟时间完成,只会运行一次。</target>
正在运行一项命令,以初步填充本地包缓存,从而提高还原速度并启用脱机访问。此命令最长需要一分钟才能完成,且仅可运行一次。</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">

View file

@ -19,22 +19,22 @@ Configuring...
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
<target state="translated">歡迎使用 .NET Core!
---------------------
深入了解 .NET Core @ https://aka.ms/dotnet-docs。使用 dotnet --help 查看可用的命令,或前往 https://aka.ms/dotnet-cli-docs。
前往 https://aka.ms/dotnet-docs 深入了解 .NET Core。使用 dotnet --help 查看可用的命令,或前往 https://aka.ms/dotnet-cli-docs。
遙測
--------------
.NET Core 工具會收集使用方式資料以改善您的體驗。資料為匿名且不含命令列引數。資料由 Microsoft 收集並與社群共用。
您可選擇退出遙測,方法是使用您慣用的殼層將 DOTNET_CLI_TELEMETRY_OPTOUT 環境變數設為 1。
您可深入閱讀 .NET Core 工具遙測 @ https://aka.ms/dotnet-cli-telemetry
.NET Core 工具會收集使用方式資料,以改進您的體驗。資料為匿名性質,而且不會包含命令列引數。資料由 Microsoft 收集,並與社群共用。
您可以退出宣告遙測,方法是使用您慣用的殼層,將 DOTNET_CLI_TELEMETRY_OPTOUT 環境變數設為 1。
前往 https://aka.ms/dotnet-cli-telemetry 可以深入了解 .NET Core 工具遙測
正在設定...
-------------------
正在執行命令以初始將您的本機套件快取填入,進而改善還原速度並啟用離線存取。此命令最多需要一分鐘完成,且只會進行一次。</target>
正在執行命令以初步填入您的本機套件快取,從而提升還原速度並允許離線存取。此命令最多需要一分鐘的時間完成,而且只會發生一次。</target>
<note />
</trans-unit>
<trans-unit id="FailedToPrimeCacheError">
<source>Failed to create prime the NuGet cache. {0} failed with: {1}</source>
<target state="translated">無法建立主要 NuGet 快取。{0} 失敗: {1}</target>
<target state="translated">無法建立主要 NuGet 快取。{0} 失敗,發生: {1}</target>
<note />
</trans-unit>
</body>

View file

@ -17,5 +17,30 @@ namespace Microsoft.DotNet.ProjectJsonMigration
// _ here is just an arbitrary configuration value so we can obtain the output name
return Path.GetFileNameWithoutExtension(projectContext.GetOutputPaths("_").CompilationFiles.Assembly);
}
public static bool HasRuntimes(this IEnumerable<ProjectContext> projectContexts)
{
return projectContexts.Any(p => p.ProjectFile.Runtimes.Any());
}
public static bool HasBothCoreAndFullFrameworkTFMs(this IEnumerable<ProjectContext> projectContexts)
{
return projectContexts.HasCoreTFM() && projectContexts.HasFullFrameworkTFM();
}
public static bool HasCoreTFM(this IEnumerable<ProjectContext> projectContexts)
{
return projectContexts.Any(p => !p.IsFullFramework());
}
public static bool HasFullFrameworkTFM(this IEnumerable<ProjectContext> projectContexts)
{
return projectContexts.Any(p => p.IsFullFramework());
}
public static bool IsFullFramework(this ProjectContext projectContext)
{
return !projectContext.TargetFramework.IsPackageBased;
}
}
}

View file

@ -41,16 +41,6 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
migrationRuleInputs.ProjectContexts.Select(p => p.TargetFramework)),
propertyGroup,
mergeExisting: true);
var runtimes = string.Join(",", migrationRuleInputs.ProjectContexts.Select(p => p.RuntimeIdentifier));
Console.WriteLine($"Runtimes = {runtimes}");
_transformApplicator.Execute(
FrameworksRuntimeIdentifiersTransform.Transform(
migrationRuleInputs.ProjectContexts),
propertyGroup,
mergeExisting: true);
}
else
{
@ -59,12 +49,16 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
migrationRuleInputs.ProjectContexts.Single().TargetFramework),
propertyGroup,
mergeExisting: true);
_transformApplicator.Execute(
FrameworkRuntimeIdentifiersTransform.Transform(
migrationRuleInputs.ProjectContexts.Single()),
}
_transformApplicator.Execute(
RuntimeIdentifiersTransform.Transform(migrationRuleInputs.ProjectContexts),
propertyGroup,
mergeExisting: true);
_transformApplicator.Execute(
RuntimeIdentifierTransform.Transform(migrationRuleInputs.ProjectContexts),
propertyGroup,
mergeExisting: true);
}
}
private void CleanExistingProperties(ProjectRootElement csproj)
@ -128,24 +122,38 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
frameworks => string.Join(";", frameworks.Select(f => f.GetShortFolderName())),
frameworks => true);
private AddPropertyTransform<IEnumerable<ProjectContext>> FrameworksRuntimeIdentifiersTransform =>
new AddPropertyTransform<IEnumerable<ProjectContext>>(
"RuntimeIdentifiers",
projectContexts => RuntimeIdentifiers,
projectContexts => projectContexts.All(p => !p.ProjectFile.Runtimes.Any()) &&
projectContexts.Any(p => !p.TargetFramework.IsPackageBased));
private AddPropertyTransform<NuGetFramework> FrameworkTransform =>
new AddPropertyTransform<NuGetFramework>(
"TargetFramework",
framework => framework.GetShortFolderName(),
framework => true);
private AddPropertyTransform<ProjectContext> FrameworkRuntimeIdentifiersTransform =>
new AddPropertyTransform<ProjectContext>(
private AddPropertyTransform<IEnumerable<ProjectContext>> RuntimeIdentifiersTransform =>
new AddPropertyTransform<IEnumerable<ProjectContext>>(
"RuntimeIdentifiers",
projectContext => RuntimeIdentifiers,
projectContext => !projectContext.ProjectFile.Runtimes.Any() &&
!projectContext.TargetFramework.IsPackageBased);
projectContexts => RuntimeIdentifiers,
projectContexts => !projectContexts.HasRuntimes() &&
projectContexts.HasBothCoreAndFullFrameworkTFMs());
private AddPropertyTransform<IEnumerable<ProjectContext>> RuntimeIdentifierTransform =>
new AddPropertyTransform<IEnumerable<ProjectContext>>(
"RuntimeIdentifier",
projectContexts => "win7-x86",
projectContexts => !projectContexts.HasRuntimes() && projectContexts.HasFullFrameworkTFM())
.WithMSBuildCondition(projectContexts =>
{
string msBuildCondition = null;
if (projectContexts.HasBothCoreAndFullFrameworkTFMs())
{
msBuildCondition = string.Join(
" OR ",
projectContexts.Where(p => p.IsFullFramework()).Select(
p => $"'$(TargetFramework)' == '{p.TargetFramework.GetShortFolderName()}'"));
msBuildCondition = $" {msBuildCondition} ";
}
return msBuildCondition;
});
}
}

View file

@ -14,7 +14,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Transforms
private readonly string _propertyValue;
private readonly Func<T,string> _propertyValueFunc;
private string _msbuildCondition = null;
private Func<T, string> _msbuildConditionFunc = null;
public AddPropertyTransform(string propertyName, string propertyValue, Func<T,bool> condition)
: base(condition)
@ -32,7 +32,13 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Transforms
public AddPropertyTransform<T> WithMSBuildCondition(string condition)
{
_msbuildCondition = condition;
_msbuildConditionFunc = source => condition;
return this;
}
public AddPropertyTransform<T> WithMSBuildCondition(Func<T, string> conditionFunc)
{
_msbuildConditionFunc = conditionFunc;
return this;
}
@ -43,9 +49,9 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Transforms
var property = _propertyObjectGenerator.CreatePropertyElement(PropertyName);
property.Value = propertyValue;
if (!string.IsNullOrEmpty(_msbuildCondition))
if (_msbuildConditionFunc != null)
{
property.Condition = _msbuildCondition;
property.Condition = _msbuildConditionFunc(source);
}
return property;

View file

@ -10,7 +10,7 @@
</trans-unit>
<trans-unit id="CannotMergeMetadataError">
<source>Cannot merge metadata with the same name and different values</source>
<target state="translated">Metadata se stejným názvem ale různými hodnotami nejdou sloučit.</target>
<target state="translated">Metadata se stejným názvem, ale různými hodnotami nejdou sloučit.</target>
<note />
</trans-unit>
<trans-unit id="NoXprojFileGivenError">

View file

@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} ist bereits vorhanden. Wurde die Migration bereits ausgeführt?</target>
<target state="translated">"{0}" ist bereits vorhanden. Wurde die Migration bereits ausgeführt?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">
@ -60,7 +60,7 @@
</trans-unit>
<trans-unit id="CannotMergeItemsWithoutCommonIncludeError">
<source>Cannot merge items without a common include.</source>
<target state="translated">Zusammenführen von Elementen ohne gemeinsames „Include“ nicht möglich.</target>
<target state="translated">Zusammenführen von Elementen ohne gemeinsames "Include" nicht möglich.</target>
<note />
</trans-unit>
<trans-unit id="PropertyTransformApplicatorWrongElementTypeError">
@ -90,7 +90,7 @@
</trans-unit>
<trans-unit id="MIGRATE1013Arg">
<source>The project.json specifies no target frameworks in {0}</source>
<target state="translated">Die „project.json“ gibt keine Zielframeworks in {0} an.</target>
<target state="translated">Die "project.json" gibt keine Zielframeworks in {0} an.</target>
<note />
</trans-unit>
<trans-unit id="MIGRATE1014">
@ -220,7 +220,7 @@
</trans-unit>
<trans-unit id="ImportsTransformNullFor">
<source>{0}: imports transform null for {1}</source>
<target state="translated">{0}: Importiert „Transform NULL“ für {1}.</target>
<target state="translated">{0}: Importiert "Transform NULL" für {1}.</target>
<note />
</trans-unit>
<trans-unit id="MigratingCountXprojToCsprojReferences">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="NoXprojFileGivenError">
<source>{0}: No xproj file given.</source>
<target state="translated">{0}: no se proporcionó archivo xproj.</target>
<target state="translated">{0}: No se proporcionó archivo xproj.</target>
<note />
</trans-unit>
<trans-unit id="MultipleXprojFilesError">
@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} ya existe. ¿Ya se ejecutó la migración?</target>
<target state="translated">'{0}' ya existe. ¿Ya se ejecutó la migración?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="NoXprojFileGivenError">
<source>{0}: No xproj file given.</source>
<target state="translated">{0} : aucun fichier xproj fourni.</target>
<target state="translated">{0} : Aucun fichier xproj fourni.</target>
<note />
</trans-unit>
<trans-unit id="MultipleXprojFilesError">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="NoXprojFileGivenError">
<source>{0}: No xproj file given.</source>
<target state="translated">{0}: xproj ファイルが指定されていません。</target>
<target state="translated">{0}:xproj ファイルが指定されていません。</target>
<note />
</trans-unit>
<trans-unit id="MultipleXprojFilesError">
@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} は既に存在します。既に移行を実行しましたか?</target>
<target state="translated">'{0}' は既に存在します。既に移行を実行しましたか?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">
@ -190,12 +190,12 @@
</trans-unit>
<trans-unit id="AddingMetadataToItem">
<source>{0}: Adding metadata to {1} item: {{ {2}, {3}, {4} }}</source>
<target state="translated">{0}: メタデータを {1} アイテムに追加しています: {{ {2}, {3}, {4} }}</target>
<target state="translated">{0}:メタデータを {1} アイテムに追加しています: {{ {2}, {3}, {4} }}</target>
<note />
</trans-unit>
<trans-unit id="SkipMigrationAlreadyMigrated">
<source>{0}: Skip migrating {1}, it is already migrated.</source>
<target state="translated">{0}: {1} の移行をスキップします。既に移行されています。</target>
<target state="translated">{0}:{1} の移行をスキップします。既に移行されています。</target>
<note />
</trans-unit>
<trans-unit id="ExecutingRule">
@ -205,7 +205,7 @@
</trans-unit>
<trans-unit id="NoConfigurationOrFrameworkFoundInProject">
<source>{0}: No configuration or framework build options found in project</source>
<target state="translated">{0}: プロジェクトに構成またはフレームワーク ビルド オプションが見つかりません</target>
<target state="translated">{0}:プロジェクトに構成またはフレームワーク ビルド オプションが見つかりません</target>
<note />
</trans-unit>
<trans-unit id="MigratingCountTargetFrameworks">
@ -225,37 +225,37 @@
</trans-unit>
<trans-unit id="MigratingCountXprojToCsprojReferences">
<source>{0}: Migrating {1} xproj to csproj references</source>
<target state="translated">{0}: {1} xproj を csproj 参照に移行しています</target>
<target state="translated">{0}:{1} xproj を csproj 参照に移行しています</target>
<note />
</trans-unit>
<trans-unit id="ExecutingMigrationRule">
<source>{0}: Executing migration rule {1}</source>
<target state="translated">{0}: 移行ルール {1} を実行しています</target>
<target state="translated">{0}:移行ルール {1} を実行しています</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorHeader">
<source>{0}: Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</source>
<target state="translated">{0}: アイテム {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4}、更新: {5} }}</target>
<target state="translated">{0}:アイテム {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4}、更新: {5} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorItemGroup">
<source>{0}: ItemGroup {{ Condition: {1} }}</source>
<target state="translated">{0}: ItemGroup {{ 条件: {1} }}</target>
<target state="translated">{0}:ItemGroup {{ 条件: {1} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformAppliatorItemCompletelyMerged">
<source>{0}: Item completely merged</source>
<target state="translated">{0}: アイテムが完全にマージされました</target>
<target state="translated">{0}:アイテムが完全にマージされました</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddItemHeader">
<source>{0}: AddItemToItemGroup {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</source>
<target state="translated">{0}: AddItemToItemGroup {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4}、更新: {5} }}</target>
<target state="translated">{0}:AddItemToItemGroup {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4}、更新: {5} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItems">
<source>{0}: Merging Item with {1} existing items with a different condition chain.</source>
<target state="translated">{0}: 別の条件チェーンで、アイテムを \ {1 \} 個の既存のアイテムとマージしています。</target>
<target state="translated">{0}:別の条件チェーンで、アイテムを \ {1 \} 個の既存のアイテムとマージしています。</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorEncompassedIncludes">
@ -265,22 +265,22 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorRemovingItem">
<source>{0}: Removing Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: アイテムを削除しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<target state="translated">{0}:アイテムを削除しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorIgnoringItem">
<source>{0}: Ignoring Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: アイテムを無視しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<target state="translated">{0}:アイテムを無視しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItemsSameChain">
<source>{0}: Merging Item with {1} existing items with the same condition chain.</source>
<target state="translated">{0}: 同じ条件チェーンで、アイテムを \ {1 \} 個の既存のアイテムとマージしています。</target>
<target state="translated">{0}:同じ条件チェーンで、アイテムを \ {1 \} 個の既存のアイテムとマージしています。</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddingMergedItem">
<source>{0}: Adding Merged Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: マージしたアイテムを追加しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<target state="translated">{0}:マージしたアイテムを追加しています {{アイテムの種類: {1}、条件: {2}、含有: {3}、除外: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="MergingProperty">

View file

@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} já existe. A migração já foi executada?</target>
<target state="translated">O {0} já existe. A migração já foi executada?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">
@ -265,12 +265,12 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorRemovingItem">
<source>{0}: Removing Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Removendo Item {{ ItemType: {1}, Condição: {2}, Incluir: {3}, Excluir: {4} }}</target>
<target state="translated">{0}: Removendo Item {{ ItemType: {1}, Condição {2\}, Incluir: {3}, Excluir: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorIgnoringItem">
<source>{0}: Ignoring Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Ignorando Item {{ ItemType: {1}, Condição: {2}, Incluir: {3}, Excluir: {4} }}</target>
<target state="translated">{0}: Ignorando Item {{ ItemType: {1}, Condição {2\}, Incluir: {3}, Excluir: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItemsSameChain">
@ -280,7 +280,7 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddingMergedItem">
<source>{0}: Adding Merged Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Adicionando Item Mesclado {{ ItemType: {1}, Condição: {2}, Incluir: {3}, Excluir: {4} }}</target>
<target state="translated">{0}: Adicionando Item Mesclado {{ ItemType: {1}, Condição {2\}, Incluir: {3}, Excluir: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="MergingProperty">

View file

@ -15,12 +15,12 @@
</trans-unit>
<trans-unit id="NoXprojFileGivenError">
<source>{0}: No xproj file given.</source>
<target state="translated">{0}: не указан файл XPROJ.</target>
<target state="translated">{0}: {0}: не указан XPROJ-файл.</target>
<note />
</trans-unit>
<trans-unit id="MultipleXprojFilesError">
<source>Multiple xproj files found in {0}, please specify which to use</source>
<target state="translated">В {0} найдено несколько файлов XPROJ, выберите один из них.</target>
<target state="translated">В {0} найдено несколько XPROJ-файлов, выберите один из них.</target>
<note />
</trans-unit>
<trans-unit id="NullMSBuildProjectTemplateError">
@ -45,7 +45,7 @@
</trans-unit>
<trans-unit id="NullDestinationElementError">
<source>expected destinationElement to not be null</source>
<target state="translated">ожидается отличное от NULL значение destinationElement</target>
<target state="translated">Ожидается отличное от NULL значение destinationElement</target>
<note />
</trans-unit>
<trans-unit id="DiagnosticMessageTemplate">
@ -220,7 +220,7 @@
</trans-unit>
<trans-unit id="ImportsTransformNullFor">
<source>{0}: imports transform null for {1}</source>
<target state="translated">{0}: импорты преобразуют значение NULL для {1}.</target>
<target state="translated">{0}: импорты преобразуют значение NULL для {1}</target>
<note />
</trans-unit>
<trans-unit id="MigratingCountXprojToCsprojReferences">
@ -245,7 +245,7 @@
</trans-unit>
<trans-unit id="ItemTransformAppliatorItemCompletelyMerged">
<source>{0}: Item completely merged</source>
<target state="translated">{0}: элемент полностью объединен.</target>
<target state="translated">{0}: элемент полностью объединен</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddItemHeader">

View file

@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} 已存在。是否已运行迁移</target>
<target state="translated">{0} 已存在。是否已运行迁移?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">
@ -185,7 +185,7 @@
</trans-unit>
<trans-unit id="MetadataHasAnotherValue">
<source>{0}.{1} metadata has another value {{ {2} {3} {4} }}</source>
<target state="translated">{0}.{1} 元数据具有另一个值 {{ {2} {3} {4} }}</target>
<target state="translated">{0}.{1} 元数据具有另一个值 {{ {2} {3} {4} }}</target>
<note />
</trans-unit>
<trans-unit id="AddingMetadataToItem">
@ -195,7 +195,7 @@
</trans-unit>
<trans-unit id="SkipMigrationAlreadyMigrated">
<source>{0}: Skip migrating {1}, it is already migrated.</source>
<target state="translated">{0}: 跳过迁移 {1}已迁移该项。</target>
<target state="translated">{0}: 跳过迁移 {1}因为该项已经迁移。</target>
<note />
</trans-unit>
<trans-unit id="ExecutingRule">
@ -235,7 +235,7 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorHeader">
<source>{0}: Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</source>
<target state="translated">{0}: Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<target state="translated">{0}: {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorItemGroup">
@ -245,7 +245,7 @@
</trans-unit>
<trans-unit id="ItemTransformAppliatorItemCompletelyMerged">
<source>{0}: Item completely merged</source>
<target state="translated">{0}: 完全合并项</target>
<target state="translated">{0}: 完全合并项</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddItemHeader">
@ -265,12 +265,12 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorRemovingItem">
<source>{0}: Removing Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Removing Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}: 删除项 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorIgnoringItem">
<source>{0}: Ignoring Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Ignoring Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}: 忽略项 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItemsSameChain">
@ -280,12 +280,12 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddingMergedItem">
<source>{0}: Adding Merged Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: Adding Merged Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}: 添加合并的项 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="MergingProperty">
<source>Merging property, output merged property</source>
<target state="translated">合并属性,输出合并的属性</target>
<target state="translated">合并属性,输出合并的属性</target>
<note />
</trans-unit>
<trans-unit id="IgnoringMergedProperty">

View file

@ -10,17 +10,17 @@
</trans-unit>
<trans-unit id="CannotMergeMetadataError">
<source>Cannot merge metadata with the same name and different values</source>
<target state="translated">無法使用相同名稱及不同值合併中繼資料</target>
<target state="translated">無法合併名稱相同但值不同的中繼資料</target>
<note />
</trans-unit>
<trans-unit id="NoXprojFileGivenError">
<source>{0}: No xproj file given.</source>
<target state="translated">{0}: 沒有指定的 xproj 檔案。</target>
<target state="translated">{0}:未指定 xproj 檔案。</target>
<note />
</trans-unit>
<trans-unit id="MultipleXprojFilesError">
<source>Multiple xproj files found in {0}, please specify which to use</source>
<target state="translated">{0} 中找到多個 xproj 檔案,請指定要使用的檔案</target>
<target state="translated">{0} 中找到多個 xproj 檔案,請指定要使用的檔案</target>
<note />
</trans-unit>
<trans-unit id="NullMSBuildProjectTemplateError">
@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="ProjAlreadyExistsError">
<source>{0} already exists. Has migration already been run?</source>
<target state="translated">{0} 已存在。是否已執行移轉?</target>
<target state="translated">{0} 已存在。是否已執行移轉?</target>
<note />
</trans-unit>
<trans-unit id="NullDestinationElementError">
@ -190,12 +190,12 @@
</trans-unit>
<trans-unit id="AddingMetadataToItem">
<source>{0}: Adding metadata to {1} item: {{ {2}, {3}, {4} }}</source>
<target state="translated">{0}: 正在將中繼資料新增至 {1} 項目: {{ {2}, {3}, {4} }}</target>
<target state="translated">{0}:正在將中繼資料新增至 {1} 項目: {{ {2}, {3}, {4} }}</target>
<note />
</trans-unit>
<trans-unit id="SkipMigrationAlreadyMigrated">
<source>{0}: Skip migrating {1}, it is already migrated.</source>
<target state="translated">{0}: 跳過移轉 {1},其已移轉過。</target>
<target state="translated">{0}:跳過移轉 {1},其已移轉過。</target>
<note />
</trans-unit>
<trans-unit id="ExecutingRule">
@ -205,7 +205,7 @@
</trans-unit>
<trans-unit id="NoConfigurationOrFrameworkFoundInProject">
<source>{0}: No configuration or framework build options found in project</source>
<target state="translated">{0}: 專案中找不到組態或架構建置選項</target>
<target state="translated">{0}:專案中找不到組態或架構建置選項</target>
<note />
</trans-unit>
<trans-unit id="MigratingCountTargetFrameworks">
@ -225,37 +225,37 @@
</trans-unit>
<trans-unit id="MigratingCountXprojToCsprojReferences">
<source>{0}: Migrating {1} xproj to csproj references</source>
<target state="translated">{0}: 正在將 {1} xproj 移轉至 csproj 參考</target>
<target state="translated">{0}:正在將 {1} xproj 移轉至 csproj 參考</target>
<note />
</trans-unit>
<trans-unit id="ExecutingMigrationRule">
<source>{0}: Executing migration rule {1}</source>
<target state="translated">{0}: 正在執行移轉規則 {1}</target>
<target state="translated">{0}:正在執行移轉規則 {1}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorHeader">
<source>{0}: Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</source>
<target state="translated">{0}: 項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<target state="translated">{0}:項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorItemGroup">
<source>{0}: ItemGroup {{ Condition: {1} }}</source>
<target state="translated">{0}: ItemGroup {{ Condition: {1} }}</target>
<target state="translated">{0}:ItemGroup {{ Condition: {1} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformAppliatorItemCompletelyMerged">
<source>{0}: Item completely merged</source>
<target state="translated">{0}: 項目已完整合併</target>
<target state="translated">{0}:項目已完整合併</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddItemHeader">
<source>{0}: AddItemToItemGroup {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</source>
<target state="translated">{0}: AddItemToItemGroup {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<target state="translated">{0}:AddItemToItemGroup {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4}, Update: {5} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItems">
<source>{0}: Merging Item with {1} existing items with a different condition chain.</source>
<target state="translated">{0}: 正在合併具 {1} 個現有項目的項目與其他條件鏈結。</target>
<target state="translated">{0}:正在合併具 {1} 個現有項目的項目與其他條件鏈結。</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorEncompassedIncludes">
@ -265,22 +265,22 @@
</trans-unit>
<trans-unit id="ItemTransformApplicatorRemovingItem">
<source>{0}: Removing Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: 正在移除項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}:正在移除項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorIgnoringItem">
<source>{0}: Ignoring Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: 正在略過項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}:正在略過項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorMergingItemWithExistingItemsSameChain">
<source>{0}: Merging Item with {1} existing items with the same condition chain.</source>
<target state="translated">{0}: 正在合併具 {1} 個現有項目的項目與相同條件鏈結。</target>
<target state="translated">{0}:正在合併具 {1} 個現有項目的項目與相同條件鏈結。</target>
<note />
</trans-unit>
<trans-unit id="ItemTransformApplicatorAddingMergedItem">
<source>{0}: Adding Merged Item {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</source>
<target state="translated">{0}: 正在新增合併的項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<target state="translated">{0}:正在新增合併的項目 {{ ItemType: {1}, Condition: {2}, Include: {3}, Exclude: {4} }}</target>
<note />
</trans-unit>
<trans-unit id="MergingProperty">

View file

@ -5,22 +5,22 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">Das letzte Argument „{0}“ akzeptiert mehrere Werte. Es kann kein weiteres Argument mehr hinzugefügt werden.</target>
<target state="translated">Das letzte Argument "{0}" akzeptiert mehrere Werte. Es kann kein weiteres Argument hinzugefügt werden.</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
<source>Unexpected value '{0}' for option '{1}'</source>
<target state="translated">Unerwarteter Wert „{0}“ für Option „{1}“.</target>
<target state="translated">Unerwarteter Wert "{0}" für Option "{1}".</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedArgumentError">
<source>Unrecognized {0} '{1}'</source>
<target state="translated">Nicht erkannt: {0} „{1}“</target>
<target state="translated">Nicht erkannt: {0} "{1}"</target>
<note />
</trans-unit>
<trans-unit id="ResponseFileNotFoundError">
<source>Response file '{0}' doesn't exist.</source>
<target state="translated">Antwortdatei „{0}“ ist nicht vorhanden.</target>
<target state="translated">Antwortdatei "{0}" ist nicht vorhanden.</target>
<note />
</trans-unit>
<trans-unit id="ShowHelpInfo">
@ -35,7 +35,7 @@
</trans-unit>
<trans-unit id="ShowHintInfo">
<source>Specify --{0} for a list of available options and commands.</source>
<target state="translated">Geben Sie „--{0}“ für eine Liste verfügbarer Optionen und Befehle an.</target>
<target state="translated">Geben Sie "--{0}" für eine Liste verfügbarer Optionen und Befehle an.</target>
<note />
</trans-unit>
<trans-unit id="UsageHeader">
@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="UsageCommandsDetailHelp">
<source>Use "{0} [command] --help" for more information about a command.</source>
<target state="translated">Verwenden Sie „{0} [Befehl] --help“, um weitere Informationen zu einem Befehl zu erhalten.</target>
<target state="translated">Verwenden Sie "{0} [Befehl] --help", um weitere Informationen zu einem Befehl zu erhalten.</target>
<note />
</trans-unit>
<trans-unit id="UsageCommandArgs">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">Alle zusätzlichen Optionen, die MSBuild übergeben werden sollen. Verfügbare Optionen siehe „dotnet msbuild -h“.</target>
<target state="translated">Alle zusätzlichen Optionen, die MSBuild übergeben werden sollen. Verfügbare Optionen siehe "dotnet msbuild -h".</target>
<note />
</trans-unit>
</body>

View file

@ -5,7 +5,7 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">El último argumento "{0}" acepta varios valores. No se pueden agregar más argumentos.</target>
<target state="translated">El último argumento '{0}' acepta varios valores. No se pueden agregar más argumentos.</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">Toda opción adicional que se debe pasar a MSBuild. Consulte "dotnet msbuild -h" para ver las opciones disponibles.</target>
<target state="translated">Cualquier opción adicional que se deba pasar a MSBuild. Consulte 'dotnet msbuild -h' para conocer las opciones disponibles.</target>
<note />
</trans-unit>
</body>

View file

@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">MSBuild に渡す必要があるすべての追加オプション。利用可能なオプションについては、'dotnet msbuild -h' を参照してください。</target>
<target state="translated">MSBuild に渡す必要があるすべての追加オプション。利用可能なオプションについては、'dotnet msbuild -h' をご覧ください。</target>
<note />
</trans-unit>
</body>

View file

@ -5,7 +5,7 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">O último argumento '{0}' aceita vários valores. Nenhum outro argumento pode ser adicionado.</target>
<target state="translated">O último argumento '{0}' aceita múltiplos valores. Nenhum outro argumento pode ser adicionado.</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">As opções extras que devem ser passadas para o MSBuild. Consulte 'dotnet msbuild -h' para obter as opções disponíveis.</target>
<target state="translated">Quaisquer opções extra que devam ser transmitidas para o MSBuild. Consulte 'dotnet msbuild -h' para obter opções disponíveis.</target>
<note />
</trans-unit>
</body>

View file

@ -5,7 +5,7 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">Последний аргумент "{0}" принимает несколько значений. Добавить дополнительные аргументы нельзя.</target>
<target state="translated">Последний аргумент {0} принимает несколько значений. Дополнительные аргументы добавить невозможно.</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
@ -100,7 +100,7 @@
</trans-unit>
<trans-unit id="UsageCommandsDetailHelp">
<source>Use "{0} [command] --help" for more information about a command.</source>
<target state="translated">Используйте "{0} [команда] --help" для получения дополнительной информации о команде.</target>
<target state="translated">Используйте синтаксис "{0} [команда] --help" для получения дополнительной информации о команде.</target>
<note />
</trans-unit>
<trans-unit id="UsageCommandArgs">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">Все дополнительные параметры, которые следует передать в MSBuild. Для получения сведений о доступных параметрах см. "dotnet msbuild -h".</target>
<target state="translated">Все дополнительные параметры, которые следует передать в MSBuild. Доступные параметры: dotnet msbuild -h</target>
<note />
</trans-unit>
</body>

View file

@ -5,7 +5,7 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">Son bağımsız değişken ('{0}') birden çok değer kabul ediyor. Daha fazla bağımsız değişken eklenemez.</target>
<target state="translated">Son bağımsız değişken ('{0}') birden çok değer kabul eder. Daha fazla bağımsız değişken eklenemez.</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">MSBuilde geçirilmesi gereken ek seçenekler. Kullanılabilir seçenekler için bkz. 'dotnet msbuild -h'.</target>
<target state="translated">MSBuilde geçirilmesi gereken ek seçenekler. Kullanılabilir seçenekler için 'dotnet msbuild -h' komutunu kullanın.</target>
<note />
</trans-unit>
</body>

View file

@ -5,7 +5,7 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">最后一个参数“{0}”接受多个值。不能再添加任何参数。</target>
<target state="translated">最后一个参数“{0}”接受多个值。无法再添加其他参数。</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
@ -40,7 +40,7 @@
</trans-unit>
<trans-unit id="UsageHeader">
<source>Usage:</source>
<target state="translated">使用情况:</target>
<target state="translated">使用情况: </target>
<note />
</trans-unit>
<trans-unit id="UsageItemWithoutArgs">
@ -60,7 +60,7 @@
</trans-unit>
<trans-unit id="UsageArgumentsHeader">
<source>Arguments:</source>
<target state="translated">参数:</target>
<target state="translated">参数: </target>
<note />
</trans-unit>
<trans-unit id="UsageArgumentItem">
@ -75,7 +75,7 @@
</trans-unit>
<trans-unit id="UsageOptionsHeader">
<source>Options:</source>
<target state="translated">选项:</target>
<target state="translated">选项: </target>
<note />
</trans-unit>
<trans-unit id="UsageOptionsItem">
@ -90,7 +90,7 @@
</trans-unit>
<trans-unit id="UsageCommandsHeader">
<source>Commands:</source>
<target state="translated">命令:</target>
<target state="translated">命令: </target>
<note />
</trans-unit>
<trans-unit id="UsageCommandsItem">
@ -115,7 +115,7 @@
</trans-unit>
<trans-unit id="UsageCommandsAdditionalArgsHeader">
<source>Additional Arguments:</source>
<target state="translated">附加参数:</target>
<target state="translated">附加参数: </target>
<note />
</trans-unit>
<trans-unit id="UsageCommandsAdditionalArgsItem">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">应传递到 MSBuild 的任何额外选项。请参阅“dotnet msbuild -h”以了解可用选项。</target>
<target state="translated">任何应该传递给 MSBuild 的额外选项。有关可用的选项请参阅“dotnet msbuild -h”。</target>
<note />
</trans-unit>
</body>

View file

@ -5,12 +5,12 @@
<group id="src/dotnet/CommandLine/LocalizableStrings.resx" />
<trans-unit id="LastArgumentMultiValueError">
<source>The last argument '{0}' accepts multiple values. No more argument can be added.</source>
<target state="translated">最後一個引數 '{0}' 接受多個值。無法再新增更多引數。</target>
<target state="translated">最後一個引數 '{0}' 接受多個值。無法新增其他值。</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedValueForOptionError">
<source>Unexpected value '{0}' for option '{1}'</source>
<target state="translated">選項 '{1}' 有預期的值 '{0}'</target>
<target state="translated">選項 '{1}' 有預期的值 '{0}'</target>
<note />
</trans-unit>
<trans-unit id="UnexpectedArgumentError">
@ -105,7 +105,7 @@
</trans-unit>
<trans-unit id="UsageCommandArgs">
<source> [args]</source>
<target state="translated"> [args]</target>
<target state="translated"> [引數]</target>
<note />
</trans-unit>
<trans-unit id="UsageCommandAdditionalArgs">
@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="MSBuildAdditionalArgsHelpText">
<source>Any extra options that should be passed to MSBuild. See 'dotnet msbuild -h' for available options.</source>
<target state="translated">應傳遞至 MSBuild 的任何其他選項。如需可用的選項,請參閱 'dotnet msbuild -h'。</target>
<target state="translated">任何應傳遞給 MSBuild 的額外選項。查看 'dotnet msbuild -h' 以得知可用的選項。</target>
<note />
</trans-unit>
</body>

View file

@ -16,6 +16,8 @@ namespace Microsoft.DotNet.Cli
{
protected abstract string CommandName { get; }
protected abstract string FullCommandNameLocalized { get; }
protected abstract string ArgumentName { get; }
protected abstract string ArgumentDescriptionLocalized { get; }
internal abstract List<Func<DotNetSubCommandBase>> SubCommands { get; }
public int RunCommand(string[] args)
@ -30,9 +32,7 @@ namespace Microsoft.DotNet.Cli
command.HelpOption("-h|--help");
command.Argument(
Constants.ProjectOrSolutionArgumentName,
CommonLocalizableStrings.ArgumentsProjectOrSolutionDescription);
command.Argument(ArgumentName, ArgumentDescriptionLocalized);
foreach (var subCommandCreator in SubCommands)
{
@ -44,7 +44,7 @@ namespace Microsoft.DotNet.Cli
{
if (!command.Arguments.Any())
{
throw new GracefulException(CommonLocalizableStrings.RequiredArgumentNotPassed, Constants.ProjectOrSolutionArgumentName);
throw new GracefulException(CommonLocalizableStrings.RequiredArgumentNotPassed, ArgumentDescriptionLocalized);
}
var projectOrDirectory = command.Arguments.First().Value;

View file

@ -16,6 +16,7 @@ using Microsoft.DotNet.Tools.List;
using Microsoft.DotNet.Tools.Migrate;
using Microsoft.DotNet.Tools.MSBuild;
using Microsoft.DotNet.Tools.New;
using Microsoft.DotNet.Tools.New3;
using Microsoft.DotNet.Tools.NuGet;
using Microsoft.DotNet.Tools.Pack;
using Microsoft.DotNet.Tools.Publish;
@ -23,6 +24,7 @@ using Microsoft.DotNet.Tools.Remove;
using Microsoft.DotNet.Tools.Restore;
using Microsoft.DotNet.Tools.RestoreProjectJson;
using Microsoft.DotNet.Tools.Run;
using Microsoft.DotNet.Tools.Sln;
using Microsoft.DotNet.Tools.Test;
using Microsoft.DotNet.Tools.VSTest;
using NuGet.Frameworks;
@ -41,6 +43,7 @@ namespace Microsoft.DotNet.Cli
["migrate"] = MigrateCommand.Run,
["msbuild"] = MSBuildCommand.Run,
["new"] = NewCommand.Run,
["new3"] = New3CommandShim.Run,
["nuget"] = NuGetCommand.Run,
["pack"] = PackCommand.Run,
["publish"] = PublishCommand.Run,
@ -48,6 +51,7 @@ namespace Microsoft.DotNet.Cli
["restore"] = RestoreCommand.Run,
["restore-projectjson"] = RestoreProjectJsonCommand.Run,
["run"] = RunCommand.Run,
["sln"] = SlnCommand.Run,
["test"] = TestCommand.Run,
["vstest"] = VSTestCommand.Run,
};

View file

@ -4,9 +4,9 @@
using System;
using System.Collections.Generic;
using Microsoft.DotNet.Cli;
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.Tools.Add.PackageReference;
using Microsoft.DotNet.Tools.Add.ProjectToProjectReference;
using Microsoft.DotNet.Tools.Add.ProjectToSolution;
namespace Microsoft.DotNet.Tools.Add
{
@ -14,12 +14,13 @@ namespace Microsoft.DotNet.Tools.Add
{
protected override string CommandName => "add";
protected override string FullCommandNameLocalized => LocalizableStrings.NetAddCommand;
protected override string ArgumentName => Constants.ProjectArgumentName;
protected override string ArgumentDescriptionLocalized => CommonLocalizableStrings.ArgumentsProjectDescription;
internal override List<Func<DotNetSubCommandBase>> SubCommands =>
new List<Func<DotNetSubCommandBase>>
{
AddProjectToSolutionCommand.Create,
AddProjectToProjectReferenceCommand.Create,
AddPackageReferenceCommand.Create
AddPackageReferenceCommand.Create,
};
public static int Run(string[] args)

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Příkaz rozhraní .NET pro přidání odkazu na balíček</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Příkaz pro přidání odkazu na balíček</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Odkazy na balíčky k přidání</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Zadejte prosím jeden odkaz na balíček, který chcete přidat.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Přidat odkaz jen při zaměření na určitou platformu</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Přidá odkaz bez provedení náhledu obnovení a kontroly kompatibility.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Určete konkrétní zdroje balíčků NuGet, které se mají použít při obnovení.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Obnoví balíčky do tohoto adresáře.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Verze balíčku, která se má přidat.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Není možné vytvořit grafický soubor závislostí pro projekt {0}. Nejde přidat odkaz na balíček.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET Add-Befehl für Paketverweise</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Befehl zum Hinzufügen eines Paketverweises</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Hinzuzufügende Paketverweise</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Geben Sie einen Paketverweis an, der hinzugefügt werden soll.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Verweis nur bei Verwendung eines bestimmten Zielframeworks hinzufügen</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Fügt einen Verweis hinzu, ohne dass eine Wiederherstellungsvorschau oder eine Kompatibilitätsprüfung durchgeführt wird.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Gibt spezifische NuGet-Paketquellen für die Wiederherstellung an.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Stellt die Pakete in diesem Verzeichnis wieder her.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Version für das Paket, das hinzugefügt werden soll.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Die Abhängigkeitsdiagrammdatei für das Projekt "{0}" konnte nicht wiederhergestellt werden. Der Paketverweis kann nicht hinzugefügt werden.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Comando de .NET para agregar referencia de paquete</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Comando para agregar referencia de paquete</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Referencias de paquete para agregar</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Especifique una referencia de paquete para agregar.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Se agrega una referencia solo cuando hay una plataforma de destino específica</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Agregue una referencia sin realizar la vista previa de restauración y la comprobación de compatibilidad.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Use orígenes de un paquete NuGet para usarlo durante la restauración.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Restaurar los paquetes en este directorio.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Versión del paquete que se va a agregar.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">No se puede crear el archivo de gráfico de dependencias para el proyecto '{0}'. No se puede agregar la referencia de paquete.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSIÓN</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">PLATAFORMA</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">DIRECTORIO_DE_PAQUETE</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Commande Ajouter une référence de package .NET</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Commande permettant d'ajouter une référence de package</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Références de package à ajouter</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Spécifiez au moins une référence de package à ajouter.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Ajouter une référence uniquement en cas de ciblage d'un framework spécifique</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Ajoutez une référence sans effectuer de prévisualisation de la restauration et de vérification de la compatibilité.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Utilisez les sources de package NuGet spécifiques pendant la restauration.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Restaurez les packages dans ce répertoire.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Version du package à ajouter.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Impossible de créer le fichier de graphique de dépendance pour le projet '{0}'. Impossible d'ajouter une référence de package.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Comando Aggiungi riferimento al pacchetto .NET</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Comando per aggiungere il riferimento al pacchetto</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Riferimenti al pacchetto da aggiungere</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Specificare almeno un riferimento al pacchetto da aggiungere.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Aggiunge il riferimento solo se destinato a un framework specifico</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Aggiunge il riferimento senza eseguire l'anteprima di restore e la verifica della compatibilità.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Consente di specificare le origini pacchetto NuGet da usare durante il ripristino.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Consente di ripristinare i pacchetti in questa directory.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Versione del pacchetto da aggiungere.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Non è possibile creare il file del grafico dipendenze per il progetto '{0}'. Non è possibile aggiungere il riferimento al pacchetto.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSIONE</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">ORIGINE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">DIRECTORY_PACCHETTO</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET Add Package 参照コマンド</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">パッケージ参照を追加するコマンド</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">追加するパッケージ参照</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">追加するパッケージ参照を 1 つ指定してください。</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">特定のフレームワークを対象とする場合にのみ参照を追加する</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">復元のプレビューや互換性チェックを行わずに参照を追加します。</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">復元中には特定の NuGet パッケージ ソースを使用します。</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">パッケージをこのディレクトリに復元します。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">追加するパッケージのバージョン。</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">プロジェクト '{0}' の依存関係グラフ ファイルを作成できません。パッケージ参照を追加できません。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET 패키지 참조 추가 명령</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">패키지 참조를 추가하는 명령</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">추가할 패키지 참조</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">추가할 하나의 패키지 참조를 지정하세요.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">특정 프레임워크를 대상으로 지정할 때에만 참조를 추가합니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">미리 보기 복원 및 호환성 검사를 수행하지 않고 참조를 추가합니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">복원 중 사용할 특정 NuGet 패키지 소스를 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">패키지를 이 디렉터리에 복원합니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">추가할 패키지의 버전입니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">'{0}' 프로젝트에 대한 종속성 그래프 파일을 만들 수 없습니다. 패키지 참조를 추가할 수 없습니다.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Polecenie dodawania odwołania do pakietu platformy .NET</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Polecenie umożliwiające dodanie odwołania do pakietu</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Odwołania do pakietów, które mają zostać dodane</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Podaj jedno odwołanie do pakietu, które ma zostać dodane.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Dodaj odwołanie tylko w przypadku określenia konkretnej platformy docelowej</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Dodaj odwołanie bez tworzenia podglądu przywracania i sprawdzania zgodności.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Użyj konkretnych źródeł pakietów NuGet podczas przywracania.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Przywróć pakiety do tego katalogu.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Wersja pakietu do dodania.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Nie można utworzyć pliku wykresu tworzenia zależności dla projektu „{0}”. Nie można dodać odwołania do pakietu.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">WERSJA</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">PLATFORMA</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">ŹRÓDŁO</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">KATALOG_PAKIETU</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Comando de adicionar referência do pacote do .NET</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Comando para adicionar a referência do pacote</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Referências do pacote a serem adicionadas</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Especifique uma referência do pacote a ser adicionada.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Adicionar referência apenas ao visar uma estrutura específica</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Adicionar referência ser executar a restauração de visualização e verificação de compatibilidade.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Usa fontes de pacote do NuGet especificadas a serem usadas durante a restauração.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Restaurar os pacotes para esse Diretório.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Versão do pacote a ser adicionada.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Não é possível criar o arquivo de gráfico Criar Dependência para o projeto '{0}'. Não é possível adicionar a referência do pacote.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">ESTRUTURA</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">ORIGEM</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">Команда добавления ссылки на пакет .NET</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Команда добавления ссылки на пакет</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Добавляемые ссылки на пакеты</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Укажите одну добавляемую ссылку на пакет.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Добавлять ссылку только при выборе конкретной целевой платформы</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Добавление ссылки без предварительной проверки восстановления и совместимости.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Указание конкретных источников пакетов NuGet, используемых во время восстановления.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Восстановление пакетов в указанном каталоге.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Версия добавляемого пакета.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">Не удалось создать файл графа зависимостей для проекта {0}. Невозможно добавить ссылку на пакет.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET Paket Başvurusu Ekleme Komutu</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">Paket başvurusu ekleme komutu</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">Eklenecek paket başvuruları</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">Lütfen eklenecek paket başvurusunu belirtin.</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">Yalnızca belirli bir çerçeveyi hedeflerken başvuru ekler</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">Geri yükleme önizlemesi ve uyumluluk denetimi gerçekleştirmeden başvuru ekler.</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">Geri yükleme sırasında kullanılacak belirli NuGet paket kaynaklarını kullanır.</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">Paketleri bu Dizine geri yükler.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">Eklenecek paketin sürümü.</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">'{0}' projesi için Bağımlılık grafiği dosyası oluşturulamadı. Paket başvurusu eklenemiyor.</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">SÜRÜM</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">ÇERÇEVE</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET 添加包引用命令</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">添加包引用的命令</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">要添加的包引用</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">请指定一个要添加的包引用。</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">仅针对特定框架添加引用</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">在没有执行还原预览和兼容性检查的情况下添加引用。</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">使用还原期间使用的特定 NuGet 包源。</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">将包还原到此目录。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">要添加的包的版本。</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">无法为项目“{0}”创建依赖关系图文件。无法添加包引用。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,73 +5,73 @@
<group id="src/dotnet/commands/dotnet-add/dotnet-add-package/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Add Package reference Command</source>
<target state="new">.NET Add Package reference Command</target>
<note></note>
<target state="translated">.NET 新增套件參考命令</target>
<note />
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to add package reference</source>
<target state="new">Command to add package reference</target>
<note></note>
<target state="translated">用以新增套件參考的命令</target>
<note />
</trans-unit>
<trans-unit id="AppHelpText">
<source>Package references to add</source>
<target state="new">Package references to add</target>
<note></note>
<target state="translated">要新增的套件參考</target>
<note />
</trans-unit>
<trans-unit id="SpecifyExactlyOnePackageReference">
<source>Please specify one package reference to add.</source>
<target state="new">Please specify one package reference to add.</target>
<note></note>
<target state="translated">請指定一個要新增的套件參考。</target>
<note />
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Add reference only when targetting a specific framework</source>
<target state="new">Add reference only when targetting a specific framework</target>
<note></note>
<target state="translated">只有在以特定架構為目標時才新增參考</target>
<note />
</trans-unit>
<trans-unit id="CmdNoRestoreDescription">
<source>Add reference without performing restore preview and compatibility check.</source>
<target state="new">Add reference without performing restore preview and compatibility check.</target>
<note></note>
<target state="translated">不須執行還原預覽及相容性檢查即可新增參考。</target>
<note />
</trans-unit>
<trans-unit id="CmdSourceDescription">
<source>Use specific NuGet package sources to use during the restore.</source>
<target state="new">Use specific NuGet package sources to use during the restore.</target>
<note></note>
<target state="translated">使用要在還原期間使用的 NuGet 套件來源。</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectoryDescription">
<source>Restore the packages to this Directory .</source>
<target state="new">Restore the packages to this Directory .</target>
<note></note>
<target state="translated">將套件還原到此目錄。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersionDescription">
<source>Version for the package to be added.</source>
<target state="new">Version for the package to be added.</target>
<note></note>
<target state="translated">要新增的套件版本。</target>
<note />
</trans-unit>
<trans-unit id="CmdDGFileException">
<source>Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</source>
<target state="new">Unable to Create Dependency graph file for project '{0}'. Cannot add package reference.</target>
<note></note>
<target state="translated">無法建立專案 '{0}' 的相依性關係圖檔案。無法新增套件參考。</target>
<note />
</trans-unit>
<trans-unit id="CmdVersion">
<source>VERSION</source>
<target state="new">VERSION</target>
<note></note>
<target state="translated">VERSION</target>
<note />
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
<target state="translated">FRAMEWORK</target>
<note />
</trans-unit>
<trans-unit id="CmdSource">
<source>SOURCE</source>
<target state="new">SOURCE</target>
<note></note>
<target state="translated">SOURCE</target>
<note />
</trans-unit>
<trans-unit id="CmdPackageDirectory">
<source>PACKAGE_DIRECTORY</source>
<target state="new">PACKAGE_DIRECTORY</target>
<note></note>
<target state="translated">PACKAGE_DIRECTORY</target>
<note />
</trans-unit>
</body>
</file>

View file

@ -5,9 +5,9 @@ namespace Microsoft.DotNet.Tools.Add.ProjectToProjectReference
{
internal class LocalizableStrings
{
public const string AppFullName = ".NET Add Project to Project (p2p) reference Command";
public const string AppFullName = ".NET Add Project to Project reference Command";
public const string AppDescription = "Command to add project to project (p2p) reference";
public const string AppDescription = "Command to add project to project reference";
public const string AppHelpText = "Project to project references to add";

View file

@ -22,7 +22,7 @@ namespace Microsoft.DotNet.Tools.Add.ProjectToProjectReference
{
var command = new AddProjectToProjectReferenceCommand()
{
Name = "p2p",
Name = "reference",
FullName = LocalizableStrings.AppFullName,
Description = LocalizableStrings.AppDescription,
HandleRemainingArguments = true,

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">Konfiguration für die Erstellung des Projekts. Standard für die meisten Projekte ist „Debug“.</target>
<target state="translated">Konfiguration für die Erstellung des Projekts. Standard für die meisten Projekte ist "Debug".</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">
@ -25,7 +25,7 @@
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to build for. The target framework has to be specified in the project file.</source>
<target state="translated">Zielframework der Erstellung. Das Zielframework muss in der Projektdatei angegeben werden.</target>
<target state="translated">Zielframework für die Erstellung. Das Zielframework muss in der Projektdatei angegeben werden.</target>
<note />
</trans-unit>
<trans-unit id="FrameworkOptionName">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">Configuración que se usará para compilar el proyecto. El valor predeterminado para la mayoría de los proyectos es "Depurar".</target>
<target state="translated">Configuración para usar para crear el proyecto. El valor predeterminado para la mayoría de los proyectos es "Depurar".</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">

View file

@ -10,12 +10,12 @@
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="translated">.NET Builder</target>
<target state="translated">.NET ビルダー</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">プロジェクトの構築に使用する構成。ほとんどのプロジェクトの場合、既定は "デバッグ" です。</target>
<target state="translated">プロジェクトの構築に使用する構成。ほとんどのプロジェクト既定は "デバッグ" です。</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">Configuração a ser usada para compilar o projeto. O padrão para a maioria dos projetos é "Debug".</target>
<target state="translated">A configuração a ser usada para criar o projeto. O padrão para a maioria dos projetos é “Depurar”.</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">
@ -25,7 +25,7 @@
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to build for. The target framework has to be specified in the project file.</source>
<target state="translated">Estrutura de destino na qual compilar. A estrutura de destino deve ser especificada no arquivo de projeto.</target>
<target state="translated">A estrutura de destino para a qual compilar. A estrutura de destino deve ser especificada no arquivo de projeto.</target>
<note />
</trans-unit>
<trans-unit id="FrameworkOptionName">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">Конфигурация, используемая при сборке проекта. По умолчанию для большинства проектов используется "Отладка".</target>
<target state="translated">Конфигурация, используемая для сборки проекта. Значение по умолчанию для большинства проектов — "Debug".</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">
@ -25,7 +25,7 @@
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to build for. The target framework has to be specified in the project file.</source>
<target state="translated">Целевая платформа сборки. Целевая платформа должна быть указана в файле проекта.</target>
<target state="translated">Целевая платформа для сборки. Целевая платформа должна быть указана в файле проекта.</target>
<note />
</trans-unit>
<trans-unit id="FrameworkOptionName">

View file

@ -15,7 +15,7 @@
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration to use for building the project. Default for most projects is "Debug".</source>
<target state="translated">Projeyi derlemek için kullanılacak yapılandırma. Çoğu proje için varsayılan, "Hata Ayıklama" seçeneğidir.</target>
<target state="translated">Projeyi derlemek için kullanılacak yapılandırma. Çoğu proje için varsayılan: "Debug".</target>
<note />
</trans-unit>
<trans-unit id="ConfigurationOptionName">

Some files were not shown because too many files have changed in this diff Show more