Changeset 14273 for trunk/sources/HeuristicLab.Problems.BinPacking
- Timestamp:
- 09/05/16 13:34:08 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.BinPacking/3.3/HeuristicLab.Problems.BinPacking-3.3.csproj
r14178 r14273 217 217 </ItemGroup> 218 218 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 219 <PropertyGroup>220 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)221 set ProjectDir=$(ProjectDir)222 set SolutionDir=$(SolutionDir)223 set Outdir=$(Outdir)224 225 call PreBuildEvent.cmd226 </PreBuildEvent>227 </PropertyGroup>228 219 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 229 220 Other similar extension points exist, see Microsoft.Common.targets. … … 233 224 </Target> 234 225 --> 226 <PropertyGroup> 227 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 228 set ProjectDir=$(ProjectDir) 229 set SolutionDir=$(SolutionDir) 230 set Outdir=$(Outdir) 231 232 call PreBuildEvent.cmd 233 </PreBuildEvent> 234 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 235 export ProjectDir=$(ProjectDir) 236 export SolutionDir=$(SolutionDir) 237 238 $SolutionDir/PreBuildEvent.sh 239 </PreBuildEvent> 240 </PropertyGroup> 235 241 </Project>
Note: See TracChangeset
for help on using the changeset viewer.