-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinhooks.csproj
More file actions
64 lines (64 loc) · 2.29 KB
/
Winhooks.csproj
File metadata and controls
64 lines (64 loc) · 2.29 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>x64</Platforms>
<ApplicationIcon>ReisProduction.ico</ApplicationIcon>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>Winhook.snk</AssemblyOriginatorKeyFile>
<Title>$(AssemblyName)</Title>
<Version>25.5.1</Version>
<Company>Reis Production</Company>
<Authors>$(Company)</Authors>
<Product>$(Company)</Product>
<Description>Winhook</Description>
<Copyright>Copyrights Reis Production 2025</Copyright>
<PackageIcon>ReisProduction.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>$(AssemblyName)</PackageTags>
<PackageReleaseNotes>Happy release Winhook!
</PackageReleaseNotes>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyVersion>25.5.1.4</AssemblyVersion>
<FileVersion>25.5.1.4</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://reisproduction.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/ReisProduction/Winhook</RepositoryUrl>
<PackAsTool>False</PackAsTool>
</PropertyGroup>
<ItemGroup>
<None Remove=".editorconfig" />
</ItemGroup>
<ItemGroup>
<Content Include="ReisProduction.ico" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Include=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="9.0.8" />
<PackageReference Include="System.Management" Version="9.0.8" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms">
<HintPath>..\..\..\..\..\..\Windows\Microsoft.NET\Framework\v4.0.30319\System.Windows.Forms.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="ReisProduction.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>