Skip to content

Commit

Permalink
fix: dependabot exception when parsing .csproj (#165)
Browse files Browse the repository at this point in the history
Fix:
- dependabot was blocked by exception in
Notation.Plugin.AzureKeyVault/Notation.Plugin.AzureKeyVault.csproj

Error log:
https://github.com/Azure/notation-azure-kv/network/updates/815374970

Signed-off-by: Junjie Gao <[email protected]>
  • Loading branch information
JeyJeyGao authored Apr 16, 2024
1 parent ef0d057 commit 027f966
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@

<Target Name="GenerateBuildMetadata" BeforeTargets="CoreCompile">
<WriteLinesToFile
File="$(IntermediateOutputPath)\GetPluginMetadta.g.cs"
Lines='
File="$(IntermediateOutputPath)\GetPluginMetadata.g.cs"
Lines="
namespace Notation.Plugin.AzureKeyVault.Command
{
public partial class GetPluginMetadata
{
static GetPluginMetadata()
{
Version = "$(Version)"%3b
CommitHash = "$(CommitHash)"%3b
Version = &quot;$(Version)&quot;%3b
CommitHash = &quot;$(CommitHash)&quot;%3b
}
}
}'
}"
Overwrite="true"
WriteOnlyWhenDifferent="true" />
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)\GetPluginMetadta.g.cs" />
<Compile Include="$(IntermediateOutputPath)\GetPluginMetadata.g.cs" />
</ItemGroup>
</Target>
</Project>

0 comments on commit 027f966

Please sign in to comment.