vsts-assemblyinfo-task
vsts-assemblyinfo-task copied to clipboard
C++/CLI with .Net Core is not supported
if (path.extname(file) !== '.csproj' && path.extname(file) !== '.vbproj' && path.extname(file) !== '.fsproj' && path.extname(file) !== '.props') { logger.warning('Invalid file. Only the following file extensions are supported: .csproj, .vbproj, .fsproj, .props'); return; }
Whe support was added for it in .NetFramework it was not added to .NetCore:
https://github.com/BMuuN/vsts-assemblyinfo-task/pull/181
Just a note if anybody wants to use it you can use two tasks in Azure pipeline one for the .Net Core and one for the C++/CLI (using the NetFramework taks).