Skip to content

Commit

Permalink
🚀 Updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
BetimBeja committed Dec 22, 2020
1 parent 284c42d commit 709344e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AlbanianXrm.SolutionPackager.Tool/SolutionPackagerCaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private void ExtractSolution(BackgroundWorker worker, DoWorkEventArgs args)
process.StartInfo.Arguments += " /packagetype:" + @params.PackageType;
}

if (!@params.AllowWrite && @params.Action == "Pack")
if (!@params.AllowWrite && @params.Action != "Pack")
{
process.StartInfo.Arguments += " /allowWrite:No";
}
Expand Down Expand Up @@ -238,7 +238,7 @@ private void ExtractSolutionProgress(ProgressChangedEventArgs args)
{
AppendArgument("packagetype", @params.PackageType);
}
if (!@params.AllowWrite && @params.Action == "Pack")
if (!@params.AllowWrite && @params.Action != "Pack")
{
AppendArgument("allowWrite", "No");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
<iconUrl>https://raw.githubusercontent.com/albanian-xrm/solution-packager/master/Logo_80x80.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Uses SolutionPackager.exe from the SDK which can be downloaded from any NuGet source (even local directory for isolated environments).</description>
<releaseNotes>v0.2020.12.1:
- Work in progress
For older releases go here: https://github.com/albanian-xrm/Solution-Packager/releases
<releaseNotes>v$version$:
- First release. This is a GUI for SolutionPackager.exe (it shows the command line used to help with the parameters)
</releaseNotes>
<copyright>Copyright 2020</copyright>
<tags>XrmToolBox Plugins Xrm AlbanianXrm SolutionPackager</tags>
Expand Down

0 comments on commit 709344e

Please sign in to comment.