Skip to content

Commit

Permalink
Add build with .targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 17, 2024
1 parent a34d425 commit 702a342
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<ProjectReference Include="..\ricaun.Nuke.PackageBuilder\ricaun.Nuke.PackageBuilder.csproj" />
</ItemGroup>

<Import Project="..\ricaun.Nuke.PackageBuilder\build\ricaun.Nuke.PackageBuilder.targets" />

<!--
<ItemGroup>
<PackageReference Include="GitVersion.CommandLine" Version="*"/>
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.8.0] / 2024-12-11
### Features
- Enable sign files using `Azure Key Vault`.
### Build
- Add import `build` with `.targets`
### Updated
- Update `ricaun.Nuke` to `1.9.0`
- Add `build` with `.targets` to install packages `AzureSignTool` and `NuGetKeyVaultSignTool`.

## [1.7.2] / 2024-11-20
### Updated
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.8.0-alpha.2</Version>
<Version>1.8.0-alpha.3</Version>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project>

<!-- Install the Packeges to allow using AzureSignTool and NuGetKeyVaultSignTool -->

<ItemGroup>
<PackageDownload Include="AzureSignTool" Version="[6.0.0]" />
<PackageDownload Include="NuGetKeyVaultSignTool" Version="[3.2.3]" />
</ItemGroup>

<PropertyGroup>
<!-- Ignore Warn Duplicate 'PackageDownload'-->
<NoWarn>$(NoWarn);NU1505</NoWarn>
</PropertyGroup>

</Project>
5 changes: 5 additions & 0 deletions ricaun.Nuke.PackageBuilder/ricaun.Nuke.PackageBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,9 @@
</ItemGroup>
-->

<ItemGroup>
<Folder Include="build\" />
<None Include="build\$(MSBuildProjectName).targets" PackagePath="build" Pack="true" />
</ItemGroup>

</Project>

0 comments on commit 702a342

Please sign in to comment.