abdelwaheb ammar

abdelwaheb ammar

  • 1.2k
  • 393
  • 118.5k

Setting OutPutPath with MSBuild

Apr 12 2020 5:58 PM
Hello,
I am search how  to configure the output path with an itemgroup using the file (.csproj)
 
 
 
  1. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">  
  2.     <PlatformTarget>AnyCPU</PlatformTarget>  
  3.     <DebugSymbols>true</DebugSymbols>  
  4.     <DebugType>full</DebugType>  
  5.     <Optimize>false</Optimize>  
  6.     <OutputPath>bin\Debug\</OutputPath>  
  7.     <DefineConstants>DEBUG;TRACE</DefineConstants>  
  8.     <ErrorReport>prompt</ErrorReport>  
  9.     <WarningLevel>4</WarningLevel>  
  10.   </PropertyGroup>  
 
 

Answers (1)