Skip to content

Commit

Permalink
Nuget package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo committed Dec 2, 2018
1 parent 9afe434 commit a7367d6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 27 deletions.
2 changes: 1 addition & 1 deletion NetSparkle
8 changes: 4 additions & 4 deletions OotD.Core/OotD.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -257,16 +257,16 @@
<Version>2.3.0</Version>
</PackageReference>
<PackageReference Include="NLog">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Config">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Schema">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="TaskScheduler">
<Version>2.8.4</Version>
<Version>2.8.6</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand Down
6 changes: 3 additions & 3 deletions OotD.Launcher/OotD.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Config">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Schema">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
21 changes: 10 additions & 11 deletions OotD.Launcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Windows.Forms;
using Microsoft.Win32;
using NLog;
using NLog.Fluent;
using NLog.Targets;
using OotD.Properties;

Expand Down Expand Up @@ -63,21 +62,21 @@ public static void Main(string[] args)

}

private static ProcessStartInfo SetupRunCommand(ProcessStartInfo startinfo, string[] args)
private static ProcessStartInfo SetupRunCommand(ProcessStartInfo startInfo, string[] args)
{
startinfo.CreateNoWindow = true;
startinfo.WindowStyle = ProcessWindowStyle.Hidden;
startinfo.UseShellExecute = true;
startinfo.WorkingDirectory = Directory.GetCurrentDirectory();
startinfo.LoadUserProfile = true;
startinfo.Arguments = string.Join(" ", args);
startInfo.CreateNoWindow = true;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = true;
startInfo.WorkingDirectory = Directory.GetCurrentDirectory();
startInfo.LoadUserProfile = true;
startInfo.Arguments = string.Join(" ", args);

if (IsDebug)
{
startinfo.Arguments += debugArg;
startInfo.Arguments += debugArg;
}

return startinfo;
return startInfo;
}


Expand Down Expand Up @@ -162,7 +161,7 @@ private static string ValidateOutlookInstallation()

// now check for bitness
var outlookKey = Registry.LocalMachine.OpenSubKey($"SOFTWARE\\Microsoft\\Office\\{versionSubKey}.0\\Outlook");
string bitness = null;
string bitness;

if (outlookKey != null)
{
Expand Down
8 changes: 4 additions & 4 deletions OotD.x64/OotD.x64.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -347,16 +347,16 @@
<Version>2.3.0</Version>
</PackageReference>
<PackageReference Include="NLog">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Config">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Schema">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="TaskScheduler">
<Version>2.8.4</Version>
<Version>2.8.6</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
8 changes: 4 additions & 4 deletions OotD.x86/OotD.x86.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -346,16 +346,16 @@
<Version>2.3.0</Version>
</PackageReference>
<PackageReference Include="NLog">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Config">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="NLog.Schema">
<Version>4.5.9</Version>
<Version>4.5.11</Version>
</PackageReference>
<PackageReference Include="TaskScheduler">
<Version>2.8.4</Version>
<Version>2.8.6</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down

0 comments on commit a7367d6

Please sign in to comment.