Files
claude-local-overview-display/Directory.Build.props

16 lines
731 B
Plaintext
Raw Normal View History

2026-06-25 09:59:54 +02:00
<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>