mirror of
https://github.com/reactos/CMake.git
synced 2025-04-09 10:40:51 +00:00

The custom command implementation is based on the Microsoft support article: https://docs.microsoft.com/en-us/visualstudio/msbuild/how-to-extend-the-visual-studio-build-process Fixes: #16960
9 lines
120 B
C#
9 lines
120 B
C#
class TestCs
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
System.Console.WriteLine("Test C#");
|
|
return 0;
|
|
}
|
|
}
|