Changeset 10062 for branches/HeuristicLab.Problems.GPDL/SyntaxAnalyzer
- Timestamp:
- 10/17/13 21:52:35 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GPDL/SyntaxAnalyzer/SyntaxAnalyzer.csproj
r9725 r10062 33 33 </PropertyGroup> 34 34 <ItemGroup> 35 <Reference Include="System" />36 35 <Reference Include="System.Core" /> 37 <Reference Include="System.Xml.Linq" />38 <Reference Include="System.Data.DataSetExtensions" />39 <Reference Include="Microsoft.CSharp" />40 <Reference Include="System.Data" />41 <Reference Include="System.Xml" />42 36 </ItemGroup> 43 37 <ItemGroup> … … 53 47 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 54 48 <PropertyGroup> 55 <PreBuildEvent >set Path=%25Path%25;$(ProjectDir);$(SolutionDir)49 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 56 50 set ProjectDir=$(ProjectDir) 57 51 set SolutionDir=$(SolutionDir) 58 52 set Outdir=$(Outdir) 59 53 60 call GenerateFromAtg.cmd</PreBuildEvent> 54 call GenerateFromAtg.cmd 55 </PreBuildEvent> 56 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 57 export ProjectDir=$(ProjectDir) 58 export SolutionDir=$(SolutionDir) 59 export Outdir=$(Outdir) 60 61 $SolutionDir/GenerateFromAtg.sh 62 </PreBuildEvent> 61 63 </PropertyGroup> 62 64 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.