-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXISOSharpTester.csproj
More file actions
103 lines (93 loc) · 5.04 KB
/
Copy pathXISOSharpTester.csproj
File metadata and controls
103 lines (93 loc) · 5.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<!-- Allow building the WPF Tester on Linux/macOS CI agents (NETSDK1100
otherwise). The app still only *runs* on Windows. -->
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<!-- AssemblyVersion/FileVersion/InformationalVersion come from MinVer
(git tags), same as the library/CLI/GUI — shown in AboutWindow. -->
<NeutralLanguage>en</NeutralLanguage>
<AssemblyName>XISOSharpTester</AssemblyName>
<RootNamespace>XISOSharpTester</RootNamespace>
<IsPackable>false</IsPackable>
<!-- Embedded PDBs are intentional here (unlike the portable default
elsewhere): this WPF rig runs from its build folder, so debug info
travels inside the exe instead of a losable sidecar .pdb. -->
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<ApplicationIcon>Icon\icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\XISOSharp\XISOSharp.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="3.0.290">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.Analyzers" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<!-- Version stamps derived from git tags, same as the library/CLI/GUI. -->
<PackageReference Include="MinVer" Version="8.0.0" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Serilog" Version="4.4.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.Debug" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="WPF-UI" Version="4.3.0" />
<PackageReference Include="QuestPDF" Version="2026.9.1" />
</ItemGroup>
<ItemGroup>
<!-- Bundled native tool (TST-007): copy either spelling when present; absence
falls back gracefully via the ToolLocator sibling/PATH chain. Conditions keep
the build warning-free when a spelling is absent. Windows behavior unchanged. -->
<None Update="extract-xiso.exe" Condition="Exists('extract-xiso.exe')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="extract-xiso" Condition="Exists('extract-xiso')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Resource Include="Images\logo.png" />
<Resource Include="Images\about.png" />
<Resource Include="Images\exit.png" />
</ItemGroup>
<!-- BUG-X-001: single source of truth for logging lives in XISOSharp.Cli/Logging
(trim-safe source-gen payload kept intact). These linked items compile the same
sources into the Tester under the Tester namespace (LOGGING_NS_TESTER); do not copy them. -->
<PropertyGroup>
<DefineConstants>$(DefineConstants);LOGGING_NS_TESTER</DefineConstants>
</PropertyGroup>
<!-- The WPF markup-pass (wpftmp) implicit set lacks System.IO/System.Net.Http,
which the linked logging sources need (File/Path, HttpClient). Explicit
Usings apply to both passes; duplicates with main-pass implicits are benign. -->
<ItemGroup>
<Using Include="System.IO" />
<Using Include="System.Net.Http" />
<!-- BUG-X-001: the linked AppLogging.cs refers to the library's logger as bare
`Logger`, which resolves in Cli/Gui via their XISOSharp.* enclosing namespaces
but not under XISOSharpTester.*. Alias makes bare `Logger` resolve here too
without editing the shared source. -->
<Using Include="XISOSharp.Logger" Alias="Logger" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\XISOSharp.Cli\Logging\AppLogging.cs" Link="Logging\AppLogging.cs" />
<Compile Include="..\XISOSharp.Cli\Logging\BugReporter.cs" Link="Logging\BugReporter.cs" />
<Compile Include="..\XISOSharp.Cli\Logging\BugReportSink.cs" Link="Logging\BugReportSink.cs" />
<Compile Include="..\XISOSharp.Cli\Logging\EnvironmentInfo.cs" Link="Logging\EnvironmentInfo.cs" />
</ItemGroup>
</Project>