diff options
Diffstat (limited to 'nejdb/nejdb.csproj')
-rw-r--r-- | nejdb/nejdb.csproj | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/nejdb/nejdb.csproj b/nejdb/nejdb.csproj index 0b3b68b..4d4b040 100644 --- a/nejdb/nejdb.csproj +++ b/nejdb/nejdb.csproj @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Configuration Condition=" '$(Configuration)' == '' ">DebugUnix</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>10.0.0</ProductVersion> <SchemaVersion>2.0</SchemaVersion> @@ -11,9 +11,9 @@ <AssemblyName>nejdb</AssemblyName> <Description>EJDB .Net binding (http://ejdb.org)</Description> <ReleaseVersion>1.0.0</ReleaseVersion> - <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> + <CodePage>65001</CodePage> </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugUnix|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> @@ -23,7 +23,7 @@ <WarningLevel>4</WarningLevel> <ConsolePause>false</ConsolePause> </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseUnix|AnyCPU' "> <DebugType>none</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release</OutputPath> @@ -31,13 +31,34 @@ <WarningLevel>4</WarningLevel> <ConsolePause>false</ConsolePause> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWindows|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug</OutputPath> + <DefineConstants>DEBUG;EJDBDLL</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + <ConsolePause>false</ConsolePause> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWindows|AnyCPU' "> + <DebugType>none</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release</OutputPath> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + <ConsolePause>false</ConsolePause> + <DefineConstants>EJDBDLL</DefineConstants> + </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77"> <Private>False</Private> </Reference> <Reference Include="System.Core" /> - <Reference Include="Mono.Posix" /> + <Reference Include="Mono.Posix"> + <HintPath>lib\Mono.Posix.dll</HintPath> + </Reference> </ItemGroup> <ItemGroup> <Compile Include="AssemblyInfo.cs" /> |