-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkginspector.csproj
More file actions
57 lines (51 loc) · 2.39 KB
/
Copy pathpkginspector.csproj
File metadata and controls
57 lines (51 loc) · 2.39 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>pkginspector</AssemblyName>
<RootNamespace>PkgInspector</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<!-- <ApplicationIcon>app.ico</ApplicationIcon> -->
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<SupportedOSPlatformVersion>6.1</SupportedOSPlatformVersion>
<Version>2025.10.05.1100</Version>
<AssemblyTitle>Package Inspector</AssemblyTitle>
<Authors>Windows Admins</Authors>
<Company>Windows Admins</Company>
<Product>Package Inspector</Product>
<Description>Modern GUI and CLI tool for inspecting Windows package files</Description>
<Copyright>Copyright © $([System.DateTime]::Now.Year)</Copyright>
<!-- Enable console output for CLI mode -->
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="YamlDotNet" Version="13.7.1" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\app-icon.png" />
<Resource Include="Resources\package-icon.png" />
<None Include="Resources\**\*" CopyToOutputDirectory="PreserveNewest" Exclude="Resources\app-icon.png;Resources\package-icon.png" />
</ItemGroup>
<ItemGroup>
<!-- Exclude CLI directory from main project -->
<Compile Remove="cli\**" />
<EmbeddedResource Remove="cli\**" />
<None Remove="cli\**" />
</ItemGroup>
<PropertyGroup>
<!-- Enable true single-file deployment with everything embedded -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
</Project>