mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
Add a `VS_DOTNET_DOCUMENTATION_FILE` target property to tell VS generators to add a `DocumentationFile` setting in `.csproj` files. Fixes: #19784
9 lines
173 B
CMake
9 lines
173 B
CMake
set(CMAKE_CONFIGURATION_TYPES Debug)
|
|
enable_language(CSharp)
|
|
|
|
add_library(foo SHARED
|
|
foo.cs)
|
|
|
|
set_target_properties(foo PROPERTIES
|
|
VS_DOTNET_DOCUMENTATION_FILE foo.xml)
|