Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/17/13 21:52:35 (11 years ago)
Author:
gkronber
Message:

#2026 worked on brute force code generator, removed unused references, worked on compatibility with mono.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GPDL/SyntaxAnalyzer/SyntaxAnalyzer.csproj

    r9725 r10062  
    3333  </PropertyGroup>
    3434  <ItemGroup>
    35     <Reference Include="System" />
    3635    <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" />
    4236  </ItemGroup>
    4337  <ItemGroup>
     
    5347  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    5448  <PropertyGroup>
    55     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     49    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    5650set ProjectDir=$(ProjectDir)
    5751set SolutionDir=$(SolutionDir)
    5852set Outdir=$(Outdir)
    5953
    60 call GenerateFromAtg.cmd</PreBuildEvent>
     54call GenerateFromAtg.cmd
     55</PreBuildEvent>
     56    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     57export ProjectDir=$(ProjectDir)
     58export SolutionDir=$(SolutionDir)
     59export Outdir=$(Outdir)
     60
     61$SolutionDir/GenerateFromAtg.sh
     62</PreBuildEvent>
    6163  </PropertyGroup>
    6264  <!-- 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.