I have ClickOnce
app and I want to generate .application
file for every version without manifest. I've set
<PropertyGroup>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
In the project file, but when building through Azure Pipelines
with MSBuild
there is no .application
file for the version generated
I've also tried to set /p:NoWin32Manifest=true
but still nothing.
Why is that?