mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
ec409a116f
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
Plaintext
9 lines
120 B
Plaintext
class TestCs
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
System.Console.WriteLine("Test C#");
|
|
return 0;
|
|
}
|
|
}
|