Created
December 12, 2014 06:19
-
-
Save odugen/4c13e8618d2369e2003b to your computer and use it in GitHub Desktop.
MSBuild update C# project with XMLPoke
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" | |
| DefaultTargets="DisableMySignedProjectSignManifest"> | |
| <Target Name="DisableMySignedProjectSignManifest"> | |
| <XmlPoke XmlInputPath="MySignedProject.csproj" | |
| Namespaces="<Namespace Prefix='x' Uri='http://schemas.microsoft.com/developer/msbuild/2003'/>" | |
| Query="x:Project/x:PropertyGroup/x:SignManifests" Value="false" /> | |
| </Target> | |
| </Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment