mirror of
https://github.com/opensim/opensim.git
synced 2026-05-17 04:05:40 +08:00
* Something that thus needs fixing is the fact that ProjectReferences has to be marked
<ProjectReference>
<Private>False</Private>
</ProjectReference>
but that is not configurable in the upstream Xml Schema. I've hardcoded it in our repo for now.
23 lines
742 B
XML
23 lines
742 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7">
|
|
<Solution name="include-001" version="1.2.3">
|
|
<Configuration name="Debug">
|
|
<Options>
|
|
<CompilerDefines>DEBUG;TRACE</CompilerDefines>
|
|
<OptimizeCode>false</OptimizeCode>
|
|
<OutputPath>bin/Debug</OutputPath>
|
|
<DebugInformation>true</DebugInformation>
|
|
</Options>
|
|
</Configuration>
|
|
<Configuration name="Release">
|
|
<Options>
|
|
<CompilerDefines>TRACE</CompilerDefines>
|
|
<OutputPath>bin/Release</OutputPath>
|
|
<OptimizeCode>true</OptimizeCode>
|
|
<DebugInformation>false</DebugInformation>
|
|
</Options>
|
|
</Configuration>
|
|
<?include file="include-001.include"?>
|
|
</Solution>
|
|
</Prebuild>
|