-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeVersionSwitcher.csproj
More file actions
34 lines (30 loc) · 1.39 KB
/
NodeVersionSwitcher.csproj
File metadata and controls
34 lines (30 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Title>Node Version Switcher</Title>
<Description>A Windows system tray application that helps you quickly switch between different Node.js versions installed via NVM (Node Version Manager) for Windows. The app provides easy access to your installed Node versions through a context menu in the system tray, allowing seamless version switching with a single click.</Description>
<Copyright>Copyright © 2025 Recep UNCU. All rights reserved.</Copyright>
<PackageIcon>nodejs-mini.png</PackageIcon>
<StartupObject>NodeVersionSwitcher.Program</StartupObject>
<ApplicationIcon>nodejs.ico</ApplicationIcon>
<AssemblyVersion>0.1.1</AssemblyVersion>
<FileVersion>0.1.1</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<None Remove="nodejs-mini.png" />
<None Remove="nodejs.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="nodejs-mini.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="nodejs.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>