From 4d371b081af42db0154300067c3b102d25d9960c Mon Sep 17 00:00:00 2001 From: Bruno Tagliapietra Date: Tue, 13 Feb 2018 08:35:22 +1300 Subject: [PATCH] Update UsingYourBuild.md Apparently it needs a PlatformTarget to be specified as well when targeting x64 architecture --- Documentation/workflow/UsingYourBuild.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/workflow/UsingYourBuild.md b/Documentation/workflow/UsingYourBuild.md index 8f01319..98a5951 100644 --- a/Documentation/workflow/UsingYourBuild.md +++ b/Documentation/workflow/UsingYourBuild.md @@ -47,10 +47,13 @@ dotnet new console In order to update with your local changes, the application needs to be self-contained, as opposed to running on the shared framework. In order to do that you will need to add a `RuntimeIdentifier` to your project. +You also need to add a `PlatformTarget`, otherwise the default would be `x86`, and that would generate an incompatibility error. + ```xml ... win-x64 + x64 ``` -- 2.7.4