Vs: allow CSharp targets to be linked to CXX targets

Fixes: #16755
This commit is contained in:
Michael Stürmer
2017-06-20 16:14:45 +02:00
parent b7799f07d1
commit 51865fc67e
6 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
#include "cli.hpp"
using namespace System;
namespace CLIApp {
void MyCli::testMyCli()
{
Console::WriteLine("#message from CLIApp");
}
}