16 lines
731 B
XML
16 lines
731 B
XML
<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>
|