Skip to content

Commit

Permalink
bump: 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dady8889 committed May 28, 2023
1 parent 3d796e3 commit 80a3bce
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
6 changes: 4 additions & 2 deletions Onova.Publisher.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@
<dependencies>
<group targetFramework="net5.0" />
<group targetFramework="net6.0" />
<group targetFramework="net7.0" />
<group targetFramework="net7.0" />
</dependencies>
<releaseNotes>* FIX: Fixed issue with multiple nested folders not unpacking.
<releaseNotes>* NEW: Added support for "dotnet tool" @nefarius
* FIX: Fixed typo in installer @nefarius
* CHANGE: Updated NuGet.Commandline (used only in IDE)
</releaseNotes>
</metadata>
<files>
Expand Down
28 changes: 14 additions & 14 deletions Onova.Publisher/Onova.Publisher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,38 +23,38 @@
</PropertyGroup>

<ItemGroup>
<Compile Remove="publish\**"/>
<EmbeddedResource Remove="publish\**"/>
<None Remove="publish\**"/>
<Compile Remove="publish\**" />
<EmbeddedResource Remove="publish\**" />
<None Remove="publish\**" />
</ItemGroup>

<ItemGroup>
<None Include="..\Onova.Publisher.nuspec"/>
<None Include="..\Onova.Publisher.nuspec" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="NuGet.CommandLine" Version="6.3.0">
<PackageReference Include="NuGet.CommandLine" Version="6.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="signtool" Version="10.0.17763.132"/>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1"/>
<PackageReference Include="System.CommandLine.Rendering" Version="0.3.0-alpha.21216.1"/>
<PackageReference Include="signtool" Version="10.0.17763.132" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
<PackageReference Include="System.CommandLine.Rendering" Version="0.3.0-alpha.21216.1" />
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<ItemGroup>
<SignToolFiles Include="$(NuGetPackageRoot)signtool\10.0.17763.132\tools\*.*"/>
<SignToolFiles Include="$(NuGetPackageRoot)signtool\10.0.17763.132\tools\*.*" />
</ItemGroup>
<Copy SourceFiles="$(SolutionDir)bin\Onova.Installer\$(ConfigurationName)\Win32\Onova.Installer.exe" DestinationFolder="$(TargetDir)"/>
<Copy SourceFiles="@(SignToolFiles)" DestinationFolder="$(TargetDir)"/>
<Copy SourceFiles="$(SolutionDir)bin\Onova.Installer\$(ConfigurationName)\Win32\Onova.Installer.exe" DestinationFolder="$(TargetDir)" />
<Copy SourceFiles="@(SignToolFiles)" DestinationFolder="$(TargetDir)" />
</Target>

<Target Name="PostPublish" AfterTargets="Publish">
<ItemGroup>
<SignToolFiles Include="$(NuGetPackageRoot)signtool\10.0.17763.132\tools\*.*"/>
<SignToolFiles Include="$(NuGetPackageRoot)signtool\10.0.17763.132\tools\*.*" />
</ItemGroup>
<Copy SourceFiles="$(SolutionDir)bin\Onova.Installer\$(ConfigurationName)\Win32\Onova.Installer.exe" DestinationFolder="$(PublishDir)"/>
<Copy SourceFiles="@(SignToolFiles)" DestinationFolder="$(PublishDir)"/>
<Copy SourceFiles="$(SolutionDir)bin\Onova.Installer\$(ConfigurationName)\Win32\Onova.Installer.exe" DestinationFolder="$(PublishDir)" />
<Copy SourceFiles="@(SignToolFiles)" DestinationFolder="$(PublishDir)" />
</Target>
</Project>

0 comments on commit 80a3bce

Please sign in to comment.