-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSimWinMouse.csproj
More file actions
25 lines (25 loc) · 1.05 KB
/
SimWinMouse.csproj
File metadata and controls
25 lines (25 loc) · 1.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net48;net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<AssemblyName>SimWinMouse</AssemblyName>
<RootNamespace>SimWinMouse</RootNamespace>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<NoWarn>CA1416</NoWarn>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<UseWindowsForms>true</UseWindowsForms>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.2.1</Version>
<AssemblyVersion>1.2.1</AssemblyVersion>
<FileVersion>1.2.1</FileVersion>
<Company>David Rieman</Company>
<Product>SimWinMouse</Product>
<Description>Simulate Windows mouse events with .NET</Description>
<Copyright>Copyright © 2026 David Rieman</Copyright>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>