1VS_CSHARP_<tagname>
2-------------------
3
4.. versionadded:: 3.8
5
6Visual Studio and CSharp source-file-specific configuration.
7
8Tell the :manual:`Visual Studio generators <cmake-generators(7)>`
9to set the source file tag ``<tagname>``
10to a given value in the generated Visual Studio CSharp
11project. Ignored on other generators and languages. This property
12can be used to define dependencies between source files or set any
13other Visual Studio specific parameters.
14
15Example usage:
16
17.. code-block:: cmake
18
19  set_source_files_property(<filename>
20           PROPERTIES
21           VS_CSHARP_DependentUpon <other file>
22           VS_CSHARP_SubType "Form")
23