Skip to content

Commit 68c7c7b

Browse files
committed
Bump version
1 parent 2df0f59 commit 68c7c7b

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

build/nuget_pack.ps1

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
Set-Location $PSScriptRoot
1+
Set-Location $PSScriptRoot
2+
3+
Write-Host @"
4+
███╗ ██╗██╗ ██╗ ██████╗ ███████╗████████╗
5+
████╗ ██║██║ ██║██╔════╝ ██╔════╝╚══██╔══╝
6+
██╔██╗ ██║██║ ██║██║ ███╗█████╗ ██║
7+
██║╚██╗██║██║ ██║██║ ██║██╔══╝ ██║
8+
██║ ╚████║╚██████╔╝╚██████╔╝███████╗ ██║
9+
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═╝
10+
"@
211

312
$projects = @(
413
"..\src\NativeTray"
@@ -13,4 +22,5 @@ foreach ($proj in $projects) {
1322
Pop-Location
1423
}
1524

16-
Pause
25+
Write-Host "`nPress any key to exit..."
26+
[void][System.Console]::ReadKey($true)

src/NativeTray/NativeTray.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
<EnableWindowsTargeting>true</EnableWindowsTargeting>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1818
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
19-
<AssemblyVersion>1.0.0.0</AssemblyVersion>
20-
<FileVersion>1.0.0.0</FileVersion>
21-
<Version>$(VersionPrefix)1.0.0.0</Version>
19+
<AssemblyVersion>2.0.0.0</AssemblyVersion>
20+
<FileVersion>2.0.0.0</FileVersion>
21+
<Version>$(VersionPrefix)2.0.0.0</Version>
2222
<Authors>ema</Authors>
2323
<Company>ema</Company>
2424
<Description>NativeTray is a modern, easy-to-use library for displaying tray icons (NotifyIcon) in .NET applications. It supports WPF, WinForms, and other .NET platforms, providing non-intrusive system notifications and quick access functionality in the Windows taskbar.</Description>
@@ -30,7 +30,6 @@
3030
<PackageReadmeFile>README.md</PackageReadmeFile>
3131
<PackageIcon>logo.png</PackageIcon>
3232
<IsRoslynAnalyzer>true</IsRoslynAnalyzer>
33-
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
3433
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3534
<IncludeDocumentationFile>true</IncludeDocumentationFile>
3635
<NoWarn>$(NoWarn);CA1416;CA1512;CS1574;CS1591</NoWarn>

0 commit comments

Comments
 (0)