-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfoRAMApp.csproj
More file actions
48 lines (43 loc) · 1.87 KB
/
InfoRAMApp.csproj
File metadata and controls
48 lines (43 loc) · 1.87 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<EnableWindowsFormsHighDpiAutoResizing>true</EnableWindowsFormsHighDpiAutoResizing>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ApplicationIcon>images\ram.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>InfoRAM</AssemblyName>
<PlatformTarget>x64</PlatformTarget>
<DebugType>none</DebugType>
<Prefer32Bit>false</Prefer32Bit>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<StaticVCRuntimeIdentifier>win-x64</StaticVCRuntimeIdentifier>
<!-- Metadatos del ensamblado -->
<Company>Pablitus</Company>
<Product>InfoRAM</Product>
<Title>InfoRAM</Title>
<Description>Información detallada de la memoria RAM de la computadora</Description>
<Copyright>© 2025 Pablitus</Copyright>
<Version>1.0.0.0</Version>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="fabricantes.json" />
<EmbeddedResource Include="images\boton.png" />
<EmbeddedResource Include="images\mem.png" />
<EmbeddedResource Include="images\robot.png" />
<EmbeddedResource Include="images\ram.ico" />
<EmbeddedResource Include="images\logo.ico" />
<EmbeddedResource Include="images\titulo.png" />
<EmbeddedResource Include="images\informacion.png" />
</ItemGroup>
</Project>