summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/VsDotnetSdk
Commit message (Collapse)AuthorAgeFilesLines
* VS: Add Xaml and Resx files to .Net SDK style projectsQuentin Berthet2022-12-069-0/+351
| | | | | | Improve parity with classic MSBuild projects. Fixes: #23415
* Tests: Fix RunCMake.VsDotnetSdk with VS >= 17.3 on ARM64Anthony Roberts2022-10-281-2/+8
| | | | | VS 17.3 provides an arm64-native version of the tool, but the test was looking for the x64 version.
* VS: Add compile properties to .NET Sdk projectsMaxime Raynaud2022-06-153-0/+84
|
* VS: Add StartupObject property for managed .NET projectsFlorian Schweiger2022-04-123-0/+34
|
* VS: .Net SDK Style projects can add Reference to dllsSumit Bhardwaj2022-02-011-1/+4
| | | | | | | | When support for `DOTNET_SDK` was added, only a minimal set of options were built in. Based on user feedback, support for reference to dlls (not just projects) is needed. That support is added here. Fixes: #23166
* VS: Add DOTNET_SDK property to generate SDK-style C# projectsSumit Bhardwaj2021-12-2113-0/+166
Changes in cmVisualStudio10TargetGenerator::Generate to write .Net SDK-style project for VS generators VS 19 and above. Also adds documentation and tests. Issue: #20227