diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs
new file mode 100755
index 000000000..0e2502ce3
--- /dev/null
+++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Linq;
+using System.Reflection;
+
+namespace ConsoleApplication
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ var thisAssembly = typeof(Program).GetTypeInfo().Assembly;
+ var resources = from resourceName in thisAssembly.GetManifestResourceNames()
+ select resourceName;
+
+ if (resources.Count() > 1)
+ {
+ throw new Exception($"{resources.Count()} found in the assembly. Was expecting only 1.");
+ }
+
+ var resourceNames = string.Join(",", resources);
+ Console.WriteLine($"{resources.Count()} Resources Found: {resourceNames}");
+ }
+ }
+}
diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx
new file mode 100644
index 000000000..1f24a372f
--- /dev/null
+++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Hello World!
+
+
\ No newline at end of file
diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json b/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json
new file mode 100755
index 000000000..3c89bd6fb
--- /dev/null
+++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json
@@ -0,0 +1,20 @@
+{
+ "version": "1.0.0-*",
+ "buildOptions": {
+ "debugType": "portable",
+ "emitEntryPoint": true,
+ "embed": [ "Resources/*.resx" ]
+ },
+ "dependencies": {},
+ "frameworks": {
+ "netcoreapp1.0": {
+ "dependencies": {
+ "Microsoft.NETCore.App": {
+ "type": "platform",
+ "version": "1.0.0"
+ }
+ },
+ "imports": "dnxcore50"
+ }
+ }
+}
diff --git a/build_projects/dotnet-cli-build/DotNetTest.cs b/build_projects/dotnet-cli-build/DotNetTest.cs
index c11ca4494..fd10ed7ea 100644
--- a/build_projects/dotnet-cli-build/DotNetTest.cs
+++ b/build_projects/dotnet-cli-build/DotNetTest.cs
@@ -57,7 +57,7 @@ namespace Microsoft.DotNet.Cli.Build
{
if (NoBuild)
{
- return "--noBuild";
+ return "--no-build";
}
return null;
diff --git a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
index 78a9592b1..1f85b8863 100644
--- a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
+++ b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
@@ -150,7 +150,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
};
private readonly string[] DefaultEmptyExcludeOption = new string[0];
-
+
private readonly ProjectPropertyGroupElement _configurationPropertyGroup;
private readonly ProjectItemGroupElement _configurationItemGroup;
private readonly CommonCompilerOptions _configurationBuildOptions;
@@ -419,13 +419,17 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
private IncludeContext GetEmbedIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory)
{
// Defaults from src/Microsoft.DotNet.ProjectModel/ProjectReader.cs #L602
- return compilerOptions.EmbedInclude ??
+ var embedIncludeContext = compilerOptions.EmbedInclude ??
new IncludeContext(
projectDirectory,
"embed",
new JObject(),
ProjectFilesCollection.DefaultResourcesBuiltInPatterns,
DefaultEmptyExcludeOption);
+
+ embedIncludeContext.BuiltInsExclude.Add("@(EmbeddedResource)");
+
+ return embedIncludeContext;
}
private IncludeContext GetCopyToOutputIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory)
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf
index 2627f6984..b9a41fd82 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Příkaz rozhraní .NET pro přidání odkazu mezi projekty (p2p)
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Příkaz pro přidání odkazu mezi projekty (p2p)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Přidávané odkazy mezi projekty
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Přidat odkaz jen při zaměření na určitou platformu
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf
index 4cd860519..a3b736e71 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ .NET-Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise)
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Hinzuzufügender Projekt-zu-Projekt-Verweis
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Verweis nur bei Verwendung eines bestimmten Zielframeworks hinzufügen
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf
index e2d402a8e..392765396 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Comando de .NET para agregar una referencia de proyecto a proyecto (p2p)
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Comando para agregar una referencia de proyecto a proyecto (p2p)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Referencias de proyecto a proyecto para agregar
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Se agrega una referencia solo cuando hay una plataforma de destino específica
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf
index 4e7f5db29..1a5918a4c 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Commande d'ajout d'une référence projet à projet (p2p) .NET
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Commande permettant d'ajouter une référence projet à projet (p2p)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Références projet à projet à ajouter
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Ajouter une référence uniquement en cas de ciblage d'un framework spécifique
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf
index 5337494f2..c9cc49db6 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Comando Aggiungi riferimento P2P (da progetto a progetto) .NET
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Comando per aggiungere il riferimento P2P (da progetto a progetto)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Riferimenti P2P (da progetto a progetto) da aggiungere
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Aggiunge il riferimento solo se destinato a un framework specifico
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf
index 28174fe64..d3bd69683 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ .NET Add Project to Project (p2p) 参照コマンド
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ project to project (p2p) 参照を追加するコマンド
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ 追加する Project to project 参照
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ 特定のフレームワークを対象とする場合にのみ参照を追加する
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf
index 706fddd29..57dd042e9 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ .NET p2p(프로젝트 간) 참조 추가 명령
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ p2p(프로젝트 간) 참조를 추가하는 명령입니다.
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ 추가할 프로젝트 간 참조입니다.
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ 특정 프레임워크를 대상으로 지정할 때에만 참조를 추가합니다.
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf
index 6bfb6efc2..9ad2c9560 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Polecenie dodawania odwołania między projektami (p2p) dla platformy .NET
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Polecenie służące do dodania odwołania między projektami (p2p)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Odwołania między projektami, które mają zostać dodane
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Dodaj odwołanie tylko w przypadku określenia konkretnej platformy docelowej
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf
index bac22edb0..01efe784e 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Comando Add Project to Project (p2p) reference do .NET
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Comando para adicionar a referência p2p (projeto para projeto)
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Referências de projeto para projeto a serem adicionadas
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Adicionar referência apenas ao visar uma estrutura específica
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf
index b229a7fb2..0d8242a08 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ Команда .NET "Добавить ссылку проекта на проект (p2p)"
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Команда для добавления ссылки проекта на проект (p2p).
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Добавляемые ссылки проекта на проект.
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Добавлять ссылку только при выборе конкретной целевой платформы
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf
index 1ab0fae60..11c57b56b 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ .NET Add Project to Project (p2p) reference Komutu
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ Projeden projeye (p2p) başvuru ekleme komutu
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ Eklenecek olan, projeden projeye başvurular
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ Yalnızca belirli bir çerçeveyi hedeflerken başvuru ekler
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf
index 587a0426e..6bba2972e 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf
@@ -3,45 +3,21 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
-
+ Command to add project to project (p2p) reference
-
+ Project to project references to add
-
-
-
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
-
+ Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
-
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf
index dfd26c78b..d48ce16ec 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ 用于项目到项目(p2p)引用的 .NET 添加命令
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ 用于添加项目到项目(p2p)引用的命令
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ 要添加的项目到项目引用
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ 仅针对特定框架添加引用
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf
index 621b24f49..744433ce7 100644
--- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf
@@ -3,55 +3,25 @@
-
- You must specify at least one reference to add. Please run dotnet add --help for more information.
- You must specify at least one reference to add. Please run dotnet add --help for more information.
-
- .NET Add Project to Project (p2p) reference Command
- .NET Add Project to Project (p2p) reference Command
-
+ .NET 新增專案對專案 (p2p) 參考命令
+ Command to add project to project (p2p) reference
- Command to add project to project (p2p) reference
-
+ 用以新增專案對專案 (p2p) 參考的命令
+ Project to project references to add
- Project to project references to add
-
-
-
- PROJECT
- PROJECT
-
-
-
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
- The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file.
-
-
-
- FRAMEWORK
- FRAMEWORK
-
+ 要新增的專案對專案參考
+ Add reference only when targetting a specific framework
- Add reference only when targetting a specific framework
-
-
-
- Add reference even if it does not exist, do not convert paths to relative
- Add reference even if it does not exist, do not convert paths to relative
-
-
-
- Project
- Project
-
+ 只有在以特定架構為目標時才新增參考
+
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf
new file mode 100644
index 000000000..feebe2f49
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf
new file mode 100644
index 000000000..27b0240de
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf
new file mode 100644
index 000000000..b9b58dfab
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf
new file mode 100644
index 000000000..0abdb2da2
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf
new file mode 100644
index 000000000..b59b600ff
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf
new file mode 100644
index 000000000..5820d4f80
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf
new file mode 100644
index 000000000..673951d0a
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf
new file mode 100644
index 000000000..c1daed128
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf
new file mode 100644
index 000000000..4f8cab7d3
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf
new file mode 100644
index 000000000..cc856b0cc
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf
new file mode 100644
index 000000000..0310d765e
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf
new file mode 100644
index 000000000..081e991a9
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf
new file mode 100644
index 000000000..e9774305c
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf
new file mode 100644
index 000000000..2f6c29a49
--- /dev/null
+++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ .NET Add Project to Solution Command
+ .NET Add Project to Solution Command
+
+
+
+ Command to add project to solution
+ Command to add project to solution
+
+
+
+ Projects to add to solution
+ Projects to add to solution
+
+
+
+
+
\ No newline at end of file
diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf
index 2f34d6760..342ca5cea 100644
--- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf
@@ -5,53 +5,8 @@
.NET Add Command
- .NET Add Command
-
-
-
- Usage
- Usage
-
-
-
- Options
- Options
-
-
-
- Show help information
- Show help information
-
-
-
- Arguments
- Arguments
-
-
-
- The object of the operation. If a project file is not specified, it defaults to the current directory.
- The object of the operation. If a project file is not specified, it defaults to the current directory.
-
-
-
- Command to be executed on <object>.
- Command to be executed on <object>.
-
-
-
- Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.
- Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.
-
-
-
- Commands
- Commands
-
-
-
- Add project to project (p2p) reference to a project
- Add project to project (p2p) reference to a project
-
+ Příkaz rozhraní .NET pro přidání
+