From d7eefb11bf8e9649e338d337b9f979e23efc71ef Mon Sep 17 00:00:00 2001 From: ddzama Date: Fri, 19 Aug 2022 14:41:49 +0300 Subject: [PATCH] 0032986: Samples - csharp sample is crashed on compilation with VC++ 2022 While demanding c++ language standard c++20, the error of OCCTProxy compilation is occured: warning C4857: C++/CLI mode does not support C++ versions newer than C++17; setting language to /std:c++17 error C7681: two-phase name lookup is not supported for C++/CLI or C++/CX; use /Zc:twoPhase- Officially, C++/CLI mode does not support C++ version newer than C++17, so we should not demand C++20 to compile csharp samples. Alternative solution - using /permissive (ConformanceMode = false), rather than default value /permissive- (ConformanceMode = true) option to compile OCCTProxy. But alternative solution has been denied. So, here is nothing to do to fix compilation of OCCTProxy project. Nevertheless, error occures in IE_WPF_WinForms and IE_WinForms - if we trying to compile with VC++ 2022 (not demanding c++20): warning MSB3274: The primary reference "*\OCCTProxy.dll" could not be resolved because it was built against the ".NETFramework,Version=v4.7.2" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v4.0". To solve the problem it is proposed to demand by default the highest version of NETFramework - 4.8. So, demanding NETFramework v4.8 does not crashing compilation of csharp samples with VC++ 2015. --- samples/CSharp/WPF_D3D/IE_WPF_D3D.csproj | 2 +- samples/CSharp/WPF_D3D/app.config | 2 +- samples/CSharp/WPF_WinForms/IE_WPF_WinForms.csproj | 2 +- samples/CSharp/WPF_WinForms/app.config | 2 +- samples/CSharp/WinForms/IE_WinForms.csproj | 2 +- samples/CSharp/WinForms/app.config | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/CSharp/WPF_D3D/IE_WPF_D3D.csproj b/samples/CSharp/WPF_D3D/IE_WPF_D3D.csproj index 91cc3260ed..1e326d7b8b 100644 --- a/samples/CSharp/WPF_D3D/IE_WPF_D3D.csproj +++ b/samples/CSharp/WPF_D3D/IE_WPF_D3D.csproj @@ -10,7 +10,7 @@ Properties IE_WPF_D3D IE_WPF_D3D - v4.0 + v4.8 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 diff --git a/samples/CSharp/WPF_D3D/app.config b/samples/CSharp/WPF_D3D/app.config index e365603337..786a845b30 100644 --- a/samples/CSharp/WPF_D3D/app.config +++ b/samples/CSharp/WPF_D3D/app.config @@ -1,3 +1,3 @@ - + diff --git a/samples/CSharp/WPF_WinForms/IE_WPF_WinForms.csproj b/samples/CSharp/WPF_WinForms/IE_WPF_WinForms.csproj index 4996b0755b..a49e95f164 100644 --- a/samples/CSharp/WPF_WinForms/IE_WPF_WinForms.csproj +++ b/samples/CSharp/WPF_WinForms/IE_WPF_WinForms.csproj @@ -10,7 +10,7 @@ Properties IE_WPF_WinForms IE_WPF_WinForms - v4.0 + v4.8 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 diff --git a/samples/CSharp/WPF_WinForms/app.config b/samples/CSharp/WPF_WinForms/app.config index e365603337..786a845b30 100644 --- a/samples/CSharp/WPF_WinForms/app.config +++ b/samples/CSharp/WPF_WinForms/app.config @@ -1,3 +1,3 @@ - + diff --git a/samples/CSharp/WinForms/IE_WinForms.csproj b/samples/CSharp/WinForms/IE_WinForms.csproj index 54b7b2aa39..7d232b571a 100644 --- a/samples/CSharp/WinForms/IE_WinForms.csproj +++ b/samples/CSharp/WinForms/IE_WinForms.csproj @@ -27,7 +27,7 @@ 3.5 - v4.0 + v4.8 publish\ true diff --git a/samples/CSharp/WinForms/app.config b/samples/CSharp/WinForms/app.config index cb021ce515..a7c484feaa 100644 --- a/samples/CSharp/WinForms/app.config +++ b/samples/CSharp/WinForms/app.config @@ -35,4 +35,4 @@ - +