Skip to content

Instantly share code, notes, and snippets.

@tritao
Created May 29, 2014 18:19
Show Gist options
  • Save tritao/0b270d8ef77691a9c8b5 to your computer and use it in GitHub Desktop.
Save tritao/0b270d8ef77691a9c8b5 to your computer and use it in GitHub Desktop.
<ItemGroup>
<CustomBuild Include="..\..\..\mcs\mcs\cs-parser.jay">
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"lib\jay" -cv &lt; "../../../mcs/jay/skeleton.cs" "../../../mcs/mcs/cs-parser.jay" &gt; gen/cs-parser.cs</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">../gen/cs-parser.cs</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"lib\jay" -cv &lt; "../../../mcs/jay/skeleton.cs" "../../../mcs/mcs/cs-parser.jay" &gt; gen/cs-parser.cs</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">../gen/cs-parser.cs</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"lib\jay" -cv &lt; "../../../mcs/jay/skeleton.cs" "../../../mcs/mcs/cs-parser.jay" &gt; gen/cs-parser.cs</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">../gen/cs-parser.cs</Outputs>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"lib\jay" -cv &lt; "../../../mcs/jay/skeleton.cs" "../../../mcs/mcs/cs-parser.jay" &gt; gen/cs-parser.cs</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">../gen/cs-parser.cs</Outputs>
</CustomBuild>
</ItemGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment