-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMWBToggle.csproj
More file actions
30 lines (27 loc) · 1.09 KB
/
MWBToggle.csproj
File metadata and controls
30 lines (27 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>mwbtoggle.ico</ApplicationIcon>
<AssemblyName>MWBToggle</AssemblyName>
<RootNamespace>MWBToggle</RootNamespace>
<Version>2.5.10</Version>
<FileVersion>2.5.10.0</FileVersion>
<InformationalVersion>2.5.10</InformationalVersion>
<Description>Toggle Mouse Without Borders clipboard and file sharing</Description>
<Product>MWBToggle</Product>
<Company>itsNate</Company>
<Authors>itsNate</Authors>
<Copyright>Copyright (c) 2026 itsNate</Copyright>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="on.ico" LogicalName="MWBToggle.on.ico" />
<EmbeddedResource Include="off.ico" LogicalName="MWBToggle.off.ico" />
</ItemGroup>
</Project>