they are stored in the vbproj file, so I would THINK you should be able to edit your vbproj file manually to include any conditional compile constant you want.
it is under a node for <PropertyGroup> here is the node from the vbproj file where I made my screen shots for you
VB Code:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <DefineDebug>true</DefineDebug> <DefineTrace>true</DefineTrace> <OutputPath>bin\Debug\</OutputPath> <DocumentationFile>RougeApp.xml</DocumentationFile> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <DefineConstants>Monkey=True</DefineConstants> </PropertyGroup>
I would think the only line you need to concern yourself with is the <DefineConstants> one...




Reply With Quote