Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Meliox committed Sep 29, 2024
1 parent d344c99 commit 157634c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions ActivityWinOff/ActivityWinOff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,25 @@
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<Version>2.0</Version>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0</FileVersion>
<InformationalVersion>2.0</InformationalVersion>
<PackageLicenseFile>LICENCE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>

<ItemGroup>
<Content Include="Icon.ico" />
</ItemGroup>

<ItemGroup>
<None Include="..\LICENCE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="GitInfo" Version="3.3.5">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion ActivityWinOff/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ private void LoadOnWindowsStartcheckBox_CheckChanged(object sender, EventArgs e)

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

private void UserActivityKeyboardcheckBox_CheckedChanged(object sender, EventArgs e)
Expand Down

0 comments on commit 157634c

Please sign in to comment.