Skip to content

Commit 157634c

Browse files
author
Meliox
committed
Release 2.0
1 parent d344c99 commit 157634c

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

ActivityWinOff/ActivityWinOff.csproj

+13
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,25 @@
77
<UseWindowsForms>true</UseWindowsForms>
88
<ImplicitUsings>enable</ImplicitUsings>
99
<ApplicationIcon>Icon.ico</ApplicationIcon>
10+
<Version>2.0</Version>
11+
<AssemblyVersion>2.0.0.0</AssemblyVersion>
12+
<FileVersion>2.0</FileVersion>
13+
<InformationalVersion>2.0</InformationalVersion>
14+
<PackageLicenseFile>LICENCE.txt</PackageLicenseFile>
15+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
1016
</PropertyGroup>
1117

1218
<ItemGroup>
1319
<Content Include="Icon.ico" />
1420
</ItemGroup>
1521

22+
<ItemGroup>
23+
<None Include="..\LICENCE.txt">
24+
<Pack>True</Pack>
25+
<PackagePath>\</PackagePath>
26+
</None>
27+
</ItemGroup>
28+
1629
<ItemGroup>
1730
<PackageReference Include="GitInfo" Version="3.3.5">
1831
<PrivateAssets>all</PrivateAssets>

ActivityWinOff/Main.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ private void LoadOnWindowsStartcheckBox_CheckChanged(object sender, EventArgs e)
680680

681681
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
682682
{
683-
MessageBox.Show("Version: " + Application.ProductVersion.ToString() + Environment.NewLine + Environment.NewLine + "MIT Licence 2020, Meliox", "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
683+
MessageBox.Show("Version: " + Application.ProductVersion.ToString(), "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
684684
}
685685

686686
private void UserActivityKeyboardcheckBox_CheckedChanged(object sender, EventArgs e)

0 commit comments

Comments
 (0)