Skip to content

Commit

Permalink
Update Squirrel and specify necessary .net framework version
Browse files Browse the repository at this point in the history
  • Loading branch information
NickLargen committed May 2, 2017
1 parent 5a7aacf commit 8141850
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Junctionizer/Junctionizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@
<Version>1.52.1</Version>
</PackageReference>
<PackageReference Include="squirrel.windows">
<Version>1.5.2</Version>
<Version>1.6.0</Version>
</PackageReference>
<PackageReference Include="System.Reactive.Linq">
<Version>3.1.1</Version>
Expand Down Expand Up @@ -392,7 +392,7 @@
</GetFileVersion>
<Message Text="File version is $(MyAssemblyFileVersion)" Importance="high" />
<Exec Command="nuget pack Junctionizer.nuspec -Version $(MyAssemblyFileVersion) -Properties Configuration=Release -OutputDirectory $(OutDir) -BasePath $(OutDir)" />
<Exec Command="squirrel --releasify $(OutDir)$(ProjectName).$(MyAssemblyFileVersion).nupkg --no-msi" />
<Exec Command="squirrel --releasify $(OutDir)$(ProjectName).$(MyAssemblyFileVersion).nupkg --no-msi --framework-version net462" />
<Exec Command="move /y Releases\Setup.exe Releases\JunctionizerSetup-$(MyAssemblyFileVersion).exe" />
</Target>
</Project>
2 changes: 1 addition & 1 deletion Junctionizer/Model/FolderCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public Task<GameFolder> CopyFolderAsync([NotNull] GameFolder folderToCopy)
return createdFolder;
}
catch (OperationCanceledException e)
catch (OperationCanceledException)
{
return null;
}
Expand Down

0 comments on commit 8141850

Please sign in to comment.