From d82a8fd2ba9c1311258939e731e848d1684a1a80 Mon Sep 17 00:00:00 2001 From: Manodasan Wignarajah Date: Fri, 17 Apr 2020 12:01:34 -0700 Subject: [PATCH] Update readme with details of custom configurations. (#21) * Updating readme with instructions for custom configurations. * Updating text. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 6b09d18..c98f228 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,11 @@ This project contains App-local DLLs that forward to runtime DLLs that are requi The NuGet package Microsoft.VCRTForwarders.140 can be found [here](https://aka.ms/vcrtfwdnuget). +Referencing the package will include the appropriate version of the forwarders on supported architectures based +on the CRT (debug / release) in use in the component project. For projects using custom debug configurations and referencing the component DLL +directly rather than via project (i.e C++ applications), the `VCRTForwarders-IncludeDebugCRT` property can be set to `true` +for that configuration to ensure inclusion of the debug CRT forwarders. + ## Sample usage You can find samples of C++ and C# apps using the forwarders [here](https://aka.ms/regfreewinrtsample).