This commit is contained in:
2026-06-25 09:59:54 +02:00
commit bd2ecd0176
16 changed files with 2069 additions and 0 deletions

15
Directory.Build.props Normal file
View File

@@ -0,0 +1,15 @@
<Project>
<!--
Windows blocks executing binaries stored on the \\wsl.localhost share, so the
build output (bin) and intermediate files (obj) are redirected to a local drive.
These must be set here (Directory.Build.props is imported before the SDK's
Microsoft.Common.props) rather than in the .csproj, or MSBuild writes generated
files to two locations and the compiler sees duplicate definitions.
Source stays solely in the WSL folder; this output folder is regenerated each build.
-->
<PropertyGroup>
<BaseOutputPath>C:\Tools\ClaudeOverview-build\bin\</BaseOutputPath>
<BaseIntermediateOutputPath>C:\Tools\ClaudeOverview-build\obj\</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>