Skip to content

Commit

Permalink
Published Magick.NET 7.9.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Dec 11, 2018
1 parent 3b0b409 commit c9db75d
Show file tree
Hide file tree
Showing 16 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Publish/Publish.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
call "..\Tools\VsDevCmd.cmd"
powershell -ExecutionPolicy Unrestricted ..\Tools\Scripts\Publish.ps1 "7.9.0.2"
powershell -ExecutionPolicy Unrestricted ..\Tools\Scripts\Publish.ps1 "7.9.1.0"
pause
Binary file not shown.
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/DebugQ16/Win32/Magick.NET.rc
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/DebugQ16/x64/Magick.NET.rc
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/DebugQ8/Win32/Magick.NET.rc
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/DebugQ8/x64/Magick.NET.rc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/ReleaseQ16/x64/Magick.NET.rc
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/ReleaseQ8/Win32/Magick.NET.rc
Binary file not shown.
Binary file modified Source/Magick.NET.Native/Resources/ReleaseQ8/x64/Magick.NET.rc
Binary file not shown.
6 changes: 3 additions & 3 deletions Source/Magick.NET.Web/Magick.NET.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<OutputPath>bin\$(Configuration)\$(Platform)\</OutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\Magick.NET.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>7.9.0.0</AssemblyVersion>
<FileVersion>7.9.0.2</FileVersion>
<Version>7.9.0.2</Version>
<AssemblyVersion>7.9.1.0</AssemblyVersion>
<FileVersion>7.9.1.0</FileVersion>
<Version>7.9.1.0</Version>
<Authors>Dirk Lemstra</Authors>
<Copyright>Copyright 2013-2018 Dirk Lemstra</Copyright>
<Platforms>x86;x64;AnyCPU</Platforms>
Expand Down
6 changes: 3 additions & 3 deletions Source/Magick.NET/Magick.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<TargetFrameworks>net20;net40;netstandard13;netstandard20</TargetFrameworks>
<OutputPath>bin\$(Configuration)\$(Platform)\</OutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>7.9.0.0</AssemblyVersion>
<FileVersion>7.9.0.2</FileVersion>
<Version>7.9.0.2</Version>
<AssemblyVersion>7.9.1.0</AssemblyVersion>
<FileVersion>7.9.1.0</FileVersion>
<Version>7.9.1.0</Version>
<Authors>Dirk Lemstra</Authors>
<Copyright>Copyright 2013-2018 Dirk Lemstra</Copyright>
<RunCodeAnalysis Condition="'$(Configuration)|$(TargetFramework)' == 'ReleaseQ16|net40'">true</RunCodeAnalysis>
Expand Down
3 changes: 2 additions & 1 deletion Tools/Scripts/Shared/Publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ function WriteNuGetPackage($id, $version, $xml)

$dir = FullPath "Publish\NuGet"
$nuspecFile = "$dir\$id.nuspec"
$nupkgFile = "$dir\$id.nupkg"
$nugetVersion = $version -replace "\.0$",""
$nupkgFile = "$dir\$id.$nugetVersion.nupkg"
if (Test-Path $nuspecFile)
{
Remove-Item $nuspecFile
Expand Down

0 comments on commit c9db75d

Please sign in to comment.