Rename target dir to intermediate

This commit is contained in:
Guilherme Werner 2026-06-10 20:13:25 -03:00
parent 1a1e6f6931
commit 7d34004bfa
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,8 +1,8 @@
.vs/ .vs/
bin/ bin/
intermediate/
obj/ obj/
releases/* releases/*
target/
!releases/.gitkeep !releases/.gitkeep
.DS_Store .DS_Store

View file

@ -12,8 +12,8 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<ConfigLower>$([System.String]::Copy('$(Configuration)').ToLower())</ConfigLower> <ConfigLower>$([System.String]::Copy('$(Configuration)').ToLower())</ConfigLower>
<targetOutputPath>$(SolutionDir)target\$(MSBuildProjectName)\$(ConfigLower)\</targetOutputPath> <IntermediateOutputPath>$(SolutionDir)intermediate\$(MSBuildProjectName)\$(ConfigLower)\</IntermediateOutputPath>
<MSBuildProjectExtensionsPath>$(SolutionDir)target\$(MSBuildProjectName)\</MSBuildProjectExtensionsPath> <MSBuildProjectExtensionsPath>$(SolutionDir)intermediate\$(MSBuildProjectName)\</MSBuildProjectExtensionsPath>
<OutputPath>$(SolutionDir)bin\$(ConfigLower)\</OutputPath> <OutputPath>$(SolutionDir)bin\$(ConfigLower)\</OutputPath>
</PropertyGroup> </PropertyGroup>
</Project> </Project>