-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimBlock.csproj
More file actions
59 lines (53 loc) · 2.51 KB
/
SimBlock.csproj
File metadata and controls
59 lines (53 loc) · 2.51 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- SimBlock Project File
This file defines the project structure and dependencies for the SimBlock application.
It is configured to build a Windows executable with .NET 8.0. -->
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>SimBlock</AssemblyName>
<RootNamespace>SimBlock</RootNamespace>
<ApplicationIcon>src\Presentation\Resources\Images\logo.ico</ApplicationIcon>
<Win32Resource />
<!-- Version Information -->
<Version>1.2.1</Version>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<FileVersion>1.2.1.0</FileVersion>
<Product>SimBlock</Product>
<Company>SimBlock</Company>
<Description>Mouse and keyboard blocking application for Windows</Description>
<Copyright>Copyright © 2025</Copyright>
<AssemblyTitle>SimBlock</AssemblyTitle>
<AssemblyDescription>Mouse and keyboard blocking application for Windows</AssemblyDescription>
<AssemblyConfiguration>Release</AssemblyConfiguration>
<AssemblyCompany>SimBlock</AssemblyCompany>
<AssemblyProduct>SimBlock</AssemblyProduct>
<AssemblyCopyright>Copyright © 2025</AssemblyCopyright>
</PropertyGroup>
<!-- Package References for Dependency Injection and Logging -->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
</ItemGroup>
<!-- Embedded Resources for Icons and Images -->
<ItemGroup>
<Content Include="src\Presentation\Resources\Images\logo.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<EmbeddedResource Include="src\Presentation\Resources\Images\logo.ico" />
<EmbeddedResource Include="src\Presentation\Resources\Images\mouse.png" />
</ItemGroup>
<!-- Exclude test sources from main app compile -->
<ItemGroup>
<Compile Remove="tests\**\*.cs" />
<None Remove="tests\**\*.*" />
<EmbeddedResource Remove="tests\**\*.*" />
</ItemGroup>
</Project>