Skip to content

Commit 6d64cef

Browse files
authored
Merge pull request #654 from emoacht/develop
Develop
2 parents e8b626b + 846b071 commit 6d64cef

File tree

14 files changed

+79
-102
lines changed

14 files changed

+79
-102
lines changed

Source/Installer/Installer.wixproj

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,16 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<Project Sdk="WixToolset.Sdk/5.0.2">
32
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6-
<ProductVersion>3.10</ProductVersion>
7-
<ProjectGuid>64cee60b-ed8e-4f72-813b-0b57f8a205a5</ProjectGuid>
8-
<SchemaVersion>2.0</SchemaVersion>
93
<OutputName>Monitorian.Installer</OutputName>
10-
<OutputType>Package</OutputType>
11-
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
12-
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
134
</PropertyGroup>
145
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
15-
<OutputPath>bin\$(Configuration)\</OutputPath>
16-
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
176
<DefineConstants>Debug</DefineConstants>
187
<SuppressValidation>False</SuppressValidation>
198
<SuppressIces>ICE69</SuppressIces>
209
</PropertyGroup>
2110
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
22-
<OutputPath>bin\$(Configuration)\</OutputPath>
23-
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
2411
<SuppressValidation>False</SuppressValidation>
2512
<SuppressIces>ICE69</SuppressIces>
2613
</PropertyGroup>
27-
<ItemGroup>
28-
<Compile Include="Product.wxs" />
29-
</ItemGroup>
3014
<ItemGroup>
3115
<ProjectReference Include="..\Monitorian\Monitorian.csproj">
3216
<Name>Monitorian</Name>
@@ -38,14 +22,9 @@
3822
</ProjectReference>
3923
</ItemGroup>
4024
<ItemGroup>
41-
<WixExtension Include="WixUIExtension">
42-
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
43-
<Name>WixUIExtension</Name>
44-
</WixExtension>
45-
<WixExtension Include="WixUtilExtension">
46-
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
47-
<Name>WixUtilExtension</Name>
48-
</WixExtension>
25+
<PackageReference Include="WixToolset.Netfx.wixext" Version="5.0.2" />
26+
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.2" />
27+
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.2" />
4928
</ItemGroup>
5029
<ItemGroup>
5130
<Content Include="Resources\banner.png" />
@@ -55,13 +34,4 @@
5534
<ItemGroup>
5635
<Folder Include="Resources" />
5736
</ItemGroup>
58-
<Import Project="$(WixTargetsPath)" />
59-
<!--
60-
To modify your build process, add your task inside one of the targets below and uncomment it.
61-
Other similar extension points exist, see Wix.targets.
62-
<Target Name="BeforeBuild">
63-
</Target>
64-
<Target Name="AfterBuild">
65-
</Target>
66-
-->
6737
</Project>

Source/Installer/Product.wxs

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" Name="Monitorian" Manufacturer="emoacht" Version="4.9.1"
1+
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
2+
xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"
3+
xmlns:netfx="http://wixtoolset.org/schemas/v4/wxs/netfx">
4+
<Package Name="Monitorian" Manufacturer="emoacht" Version="4.9.2"
45
Language="1033" Codepage="1252" UpgradeCode="{81A4D148-75D3-462E-938D-8C208FB48E3C}">
5-
<Package Id="*" InstallerVersion="500" Compressed="yes"
6-
InstallScope="perMachine" InstallPrivileges="elevated"
7-
Description="Installer for Monitorian"/>
6+
<SummaryInformation Description="Installer for Monitorian"/>
87

98
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
109

@@ -16,11 +15,12 @@
1615
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR"/>
1716

1817
<UI>
19-
<UIRef Id="WixUI_InstallDir"/>
18+
<ui:WixUI Id="WixUI_InstallDir"/>
2019
<UIRef Id="WixUI_ErrorProgressText"/>
2120

2221
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction"
23-
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
22+
Value="LaunchApplication"
23+
Condition="WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed"/>
2424
</UI>
2525

2626
<WixVariable Id="WixUIBannerBmp" Value="Resources\banner.png"/>
@@ -30,56 +30,56 @@
3030
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch $(var.Monitorian.ProjectName) now"/>
3131
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1"/>
3232

33-
<Directory Id="TARGETDIR" Name="SourceDir">
34-
<!-- Program Files -->
35-
<Directory Id="ProgramFilesFolder">
36-
<Directory Id="INSTALLDIR" Name="$(var.Monitorian.ProjectName)"/>
37-
</Directory>
33+
<!-- Program Files -->
34+
<StandardDirectory Id="ProgramFilesFolder">
35+
<Directory Id="INSTALLDIR" Name="$(var.Monitorian.ProjectName)"/>
36+
</StandardDirectory>
3837

39-
<!-- Program Menu -->
40-
<Directory Id="ProgramMenuFolder"/>
38+
<!-- Program Menu -->
39+
<StandardDirectory Id="ProgramMenuFolder"/>
4140

42-
<!-- Local AppData -->
43-
<Directory Id="LocalAppDataFolder">
44-
<Directory Id="ApplicationLocalAppDataFolder" Name="$(var.Monitorian.ProjectName)"/>
45-
</Directory>
46-
</Directory>
41+
<!-- Local AppData -->
42+
<StandardDirectory Id="LocalAppDataFolder">
43+
<Directory Id="ApplicationLocalAppDataFolder" Name="$(var.Monitorian.ProjectName)"/>
44+
</StandardDirectory>
4745

4846
<DirectoryRef Id="INSTALLDIR">
4947
<Component Id="MainExecutable" Guid="{54E27434-B1A7-4EB7-9F97-847E0B336BAF}">
50-
<File Id="MainExecutable"
51-
Source="$(var.Monitorian.TargetPath)" Name="$(var.Monitorian.TargetFileName)" KeyPath="yes"/>
48+
<File Id="MainExecutable" Name="$(var.Monitorian.TargetFileName)"
49+
Source="$(var.Monitorian.TargetPath)" KeyPath="yes">
50+
<netfx:NativeImage Id="MainExecutableNgen" Platform="32bit" Priority="0" AppBaseDirectory="INSTALLDIR"/>
51+
</File>
5252
</Component>
5353

5454
<Component Id="MainExecutableConfig" Guid="{B5CD9CA1-8E4C-41AC-A7BA-1291CB40A916}">
55-
<File Id="MainExecutableConfig"
56-
Source="$(var.Monitorian.TargetDir)" Name="$(var.Monitorian.TargetFileName).config" KeyPath="yes"/>
55+
<File Id="MainExecutableConfig" Name="$(var.Monitorian.TargetFileName).config"
56+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
5757
</Component>
5858

5959
<Component Id="BehaviorsLibrary" Guid="{CDD5E0E6-FF0A-47DA-AE3E-66D6F6FAB3E8}">
60-
<File Id="BehaviorsLibrary"
61-
Source="$(var.Monitorian.TargetDir)" Name="Microsoft.Xaml.Behaviors.dll" KeyPath="yes"/>
60+
<File Id="BehaviorsLibrary" Name="Microsoft.Xaml.Behaviors.dll"
61+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
6262
</Component>
6363

6464
<Component Id="CoreLibrary" Guid="{1E9CB31F-C53B-4E83-B593-F30ADC7468CB}">
65-
<File Id="CoreLibrary"
66-
Source="$(var.Monitorian.TargetDir)" Name="$(var.Monitorian.TargetName).Core.dll" KeyPath="yes"/>
65+
<File Id="CoreLibrary" Name="$(var.Monitorian.TargetName).Core.dll"
66+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
6767
</Component>
6868

6969
<Component Id="FrameLibrary" Guid="{9BAED8CA-C9C3-4ECD-8D28-289758577A8E}">
70-
<File Id="FrameLibrary"
71-
Source="$(var.Monitorian.TargetDir)" Name="ScreenFrame.dll" KeyPath="yes"/>
70+
<File Id="FrameLibrary" Name="ScreenFrame.dll"
71+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
7272
</Component>
7373

7474
<Component Id="StartupLibrary" Guid="{BF5542A0-B74B-4CBA-9945-C001342759A6}">
75-
<File Id="StartupLibrary"
76-
Source="$(var.Monitorian.TargetDir)" Name="StartupAgency.dll" KeyPath="yes"/>
75+
<File Id="StartupLibrary" Name="StartupAgency.dll"
76+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
7777
</Component>
7878

79-
<Component Id="VisualManifest" Guid="{69BD7D13-0EA9-46F3-9575-EBEEF24A839D}">
80-
<Condition><![CDATA[VEM = "yes"]]></Condition>
81-
<File Id="VisualManifest"
82-
Source="$(var.Monitorian.TargetDir)" Name="$(var.Monitorian.TargetName).VisualElementsManifest.xml" KeyPath="yes"/>
79+
<Component Id="VisualManifest" Guid="{69BD7D13-0EA9-46F3-9575-EBEEF24A839D}"
80+
Condition="VEM = &quot;yes&quot;">
81+
<File Id="VisualManifest" Name="$(var.Monitorian.TargetName).VisualElementsManifest.xml"
82+
Source="$(var.Monitorian.TargetDir)" KeyPath="yes"/>
8383
</Component>
8484

8585
<!-- Language resources -->
@@ -174,7 +174,7 @@
174174
</Component>
175175
</Directory>
176176
<Directory Id="ResourcesFolder_svSE" Name="sv-SE"
177-
FileSource="$(var.Monitorian.TargetDir)sv-SE">
177+
FileSource="$(var.Monitorian.TargetDir)sv-SE">
178178
<Component Id="CoreResourcesLibrary_svSE" Guid="{5C74A446-22F2-46EF-9D07-241142FE66B7}">
179179
<File Id="CoreResourcesLibrary_svSE" Name="$(var.Monitorian.TargetName).Core.resources.dll" KeyPath="yes"/>
180180
</Component>
@@ -206,7 +206,7 @@
206206
</DirectoryRef>
207207

208208
<!-- Shortcut in Program Menu -->
209-
<DirectoryRef Id="ProgramMenuFolder">
209+
<StandardDirectory Id="ProgramMenuFolder">
210210
<Component Id="ApplicationShortcut" Guid="{FEE3D455-9968-475E-9B57-44826C4BF63F}">
211211
<Shortcut Id="ApplicationProgramMenuShortcut" Name="$(var.Monitorian.ProjectName)"
212212
Target="[#MainExecutable]" WorkingDirectory="INSTALLDIR"
@@ -216,7 +216,7 @@
216216
<RegistryValue Root="HKCU" Key="Software\[ProductName]"
217217
Name="ApplicationShortcut" Type="integer" Value="1" KeyPath="yes"/>
218218
</Component>
219-
</DirectoryRef>
219+
</StandardDirectory>
220220

221221
<!-- Working Folder in Local AppData -->
222222
<DirectoryRef Id="ApplicationLocalAppDataFolder">
@@ -265,13 +265,14 @@
265265

266266
<!-- Launch after installation -->
267267
<Property Id="WixShellExecTarget" Value="$(var.Monitorian.TargetFileName)"/>
268-
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes"/>
268+
<CustomAction Id="LaunchApplication" DllEntry="WixShellExec" Impersonate="yes" BinaryRef="Wix4UtilCA_X86"/>
269269

270270
<!-- Clean Current User Run -->
271271
<CustomAction Id="CleanCurrentUserRun" Directory="TARGETDIR" Execute="immediate" Return="ignore"
272272
ExeCommand="[SystemFolder]reg.exe delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v [ProductName] /f"/>
273273
<InstallExecuteSequence>
274-
<Custom Action="CleanCurrentUserRun" After="InstallFinalize">(NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL")</Custom>
274+
<Custom Action="CleanCurrentUserRun" After="InstallFinalize"
275+
Condition="(NOT UPGRADINGPRODUCTCODE) AND (REMOVE=&quot;ALL&quot;)"/>
275276
</InstallExecuteSequence>
276-
</Product>
277+
</Package>
277278
</Wix>

Source/Monitorian.Core/AppKeeper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task<bool> StartAsync(StartupEventArgs e, IEnumerable<string> addit
3737

3838
SubscribeExceptions();
3939

40-
var (success, response) = StartupAgent.Start(ProductInfo.Product, ProductInfo.StartupTaskId, ForwardingArguments);
40+
var (success, response) = StartupAgent.Start(ProductInfo.Product, ProductInfo.StartupTaskId, StandardArguments, ForwardingArguments);
4141
if (!success && (response is not null))
4242
{
4343
ConsoleService.WriteLine(response);

Source/Monitorian.Core/Models/Monitor/Error.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static (int errorCode, string message) GetCodeMessage()
3232

3333
public static string GetMessage(int errorCode)
3434
{
35-
var message = new StringBuilder($"Code: {errorCode}");
35+
var message = new StringBuilder($"Code: 0x{errorCode:X8}");
3636

3737
var buffer = new StringBuilder(512); // This 512 capacity is arbitrary.
3838
if (FormatMessage(
@@ -44,7 +44,7 @@ public static string GetMessage(int errorCode)
4444
buffer.Capacity,
4545
IntPtr.Zero) > 0)
4646
{
47-
message.Append($", Message: ").Append(buffer);
47+
message.Append(", Message: ").Append(buffer);
4848
}
4949

5050
return message.ToString();

Source/Monitorian.Core/Models/Monitor/MSMonitor.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static IEnumerable<DesktopItem> EnumerateDesktopMonitors()
8787
}
8888
catch (ManagementException me)
8989
{
90-
Debug.WriteLine($"Failed to get and enumerate instances by Win32_DesktopMonitor. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
90+
Debug.WriteLine($"Failed to get and enumerate instances by Win32_DesktopMonitor. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
9191
+ me);
9292
yield break;
9393
}
@@ -103,7 +103,7 @@ public static IEnumerable<DesktopItem> EnumerateDesktopMonitors()
103103
}
104104
catch (ManagementException me)
105105
{
106-
Debug.WriteLine($"Failed to get instances by WmiMonitorBrightness. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
106+
Debug.WriteLine($"Failed to get instances by WmiMonitorBrightness. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
107107
+ me);
108108
yield break;
109109
}
@@ -128,7 +128,7 @@ public static IEnumerable<DesktopItem> EnumerateDesktopMonitors()
128128
// ErrorCode is ManagementStatus.NotSupported,
129129
// ErrorCode is ManagementStatus.CallCanceled,
130130
// HResult is 0x80131501.
131-
Debug.WriteLine($"Failed to enumerate instances by WmiMonitorBrightness. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
131+
Debug.WriteLine($"Failed to enumerate instances by WmiMonitorBrightness. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
132132
+ me);
133133
yield break;
134134
}
@@ -179,7 +179,7 @@ public static int GetBrightness(string deviceInstanceId)
179179
}
180180
catch (ManagementException me)
181181
{
182-
Debug.WriteLine($"Failed to get brightness by WmiMonitorBrightness. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
182+
Debug.WriteLine($"Failed to get brightness by WmiMonitorBrightness. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
183183
+ me);
184184
return -1;
185185
}
@@ -213,7 +213,7 @@ public static bool SetBrightness(string deviceInstanceId, int brightness, int ti
213213
isSuccess = (errorCode == 0);
214214
if (!isSuccess)
215215
{
216-
Debug.WriteLine($"Failed to set brightness. ({errorCode})");
216+
Debug.WriteLine($"Failed to set brightness. 0x{errorCode:X8}");
217217
}
218218
}
219219
return isSuccess;
@@ -224,7 +224,7 @@ public static bool SetBrightness(string deviceInstanceId, int brightness, int ti
224224
}
225225
catch (ManagementException me)
226226
{
227-
Debug.WriteLine($"Failed to set brightness by WmiSetBrightness. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
227+
Debug.WriteLine($"Failed to set brightness by WmiSetBrightness. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}" + Environment.NewLine
228228
+ me);
229229
return false;
230230
}
@@ -251,7 +251,7 @@ public static (ManagementEventWatcher watcher, string message) StartBrightnessEv
251251
}
252252
catch (ManagementException me)
253253
{
254-
var message = $"Failed to start watcher for WmiMonitorBrightnessEvent. HResult: 0x{me.HResult:x8} ErrorCode: {me.ErrorCode}";
254+
var message = $"Failed to start watcher for WmiMonitorBrightnessEvent. HResult: 0x{me.HResult:X8} ErrorCode: {me.ErrorCode}";
255255
Debug.WriteLine(message + Environment.NewLine
256256
+ me);
257257

Source/Monitorian.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("4.9.1.0")]
37-
[assembly: AssemblyFileVersion("4.9.1.0")]
36+
[assembly: AssemblyVersion("4.9.2.0")]
37+
[assembly: AssemblyFileVersion("4.9.2.0")]
3838
[assembly: NeutralResourcesLanguage("en-US")]
3939

4040
// For unit test

Source/Monitorian.Core/Views/WindowPainter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bool TryParse(string source, out Brush brush)
4747
{
4848
try
4949
{
50-
brush = (Brush)converter.ConvertFromString(source);
50+
brush = (Brush)converter.ConvertFromInvariantString(source);
5151
return true;
5252
}
5353
catch

Source/Monitorian/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("4.9.1.0")]
55-
[assembly: AssemblyFileVersion("4.9.1.0")]
54+
[assembly: AssemblyVersion("4.9.2.0")]
55+
[assembly: AssemblyFileVersion("4.9.2.0")]
5656
[assembly: Guid("a4cc5362-9b08-465b-ad64-5cfabc72a4c7")]
5757
[assembly: NeutralResourcesLanguage("en-US")]

Source/ScreenFrame/Helper/ColorExtension.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public static Color GetColorizationColor()
2323
out uint pcrColorization,
2424
out _) == S_OK)
2525
{
26+
// The color format is 0xAARRGGBB.
2627
return FromUInt32(pcrColorization);
2728
}
2829
return default;

Source/ScreenFrame/NotifyIconContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ private void ShowOverlayWindow()
336336
{
337337
WindowStyle = WindowStyle.None,
338338
AllowsTransparency = true,
339-
Background = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(1, 0, 0, 0)),
339+
Background = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(a: 1, 0, 0, 0)),
340340
Topmost = true,
341341
ShowActivated = false,
342342
ShowInTaskbar = false,

Source/ScreenFrame/Painter/WindowPainter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ protected static void ChangeResources(string oldUriString, string newUriString)
387387
}
388388
catch (Exception ex)
389389
{
390-
Debug.WriteLine($"Failed to add resources." + Environment.NewLine
390+
Debug.WriteLine("Failed to add resources." + Environment.NewLine
391391
+ ex);
392392
}
393393
}

Source/ScreenFrame/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("4.8.4.0")]
37-
[assembly: AssemblyFileVersion("4.8.4.0")]
36+
[assembly: AssemblyVersion("4.9.2.0")]
37+
[assembly: AssemblyFileVersion("4.9.2.0")]
3838
[assembly: NeutralResourcesLanguage("en-US")]

Source/StartupAgency/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("4.8.1.0")]
37-
[assembly: AssemblyFileVersion("4.8.1.0")]
36+
[assembly: AssemblyVersion("4.9.2.0")]
37+
[assembly: AssemblyFileVersion("4.9.2.0")]
3838
[assembly: NeutralResourcesLanguage("en-US")]

0 commit comments

Comments
 (0)