Changeset 3452 for libcaca/trunk/caca-sharp
- Timestamp:
- May 14, 2009, 12:04:26 PM (13 years ago)
- Location:
- libcaca/trunk/caca-sharp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca-sharp/caca-sharp.csproj
r3428 r3452 35 35 <DebugType>full</DebugType> 36 36 <Optimize>false</Optimize> 37 <OutputPath> %24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath>37 <OutputPath>..\Debug\</OutputPath> 38 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 39 <ErrorReport>prompt</ErrorReport> 40 40 <WarningLevel>4</WarningLevel> 41 <PlatformTarget>x86</PlatformTarget> 41 42 </PropertyGroup> 42 43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 43 44 <DebugType>pdbonly</DebugType> 44 45 <Optimize>true</Optimize> 45 <OutputPath> %24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath>46 <OutputPath>..\Release\</OutputPath> 46 47 <DefineConstants>TRACE</DefineConstants> 47 48 <ErrorReport>prompt</ErrorReport> 48 49 <WarningLevel>4</WarningLevel> 50 <PlatformTarget>x86</PlatformTarget> 51 </PropertyGroup> 52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 53 <DebugSymbols>true</DebugSymbols> 54 <OutputPath>..\Debug\</OutputPath> 55 <DefineConstants>DEBUG;TRACE</DefineConstants> 56 <DebugType>full</DebugType> 57 <PlatformTarget>x64</PlatformTarget> 58 <ErrorReport>prompt</ErrorReport> 59 </PropertyGroup> 60 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 61 <OutputPath>..\Release\</OutputPath> 62 <DefineConstants>TRACE</DefineConstants> 63 <Optimize>true</Optimize> 64 <DebugType>pdbonly</DebugType> 65 <PlatformTarget>x64</PlatformTarget> 66 <ErrorReport>prompt</ErrorReport> 67 </PropertyGroup> 68 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 69 <DebugSymbols>true</DebugSymbols> 70 <OutputPath>bin\x86\Debug\</OutputPath> 71 <DefineConstants>DEBUG;TRACE</DefineConstants> 72 <DebugType>full</DebugType> 73 <PlatformTarget>x86</PlatformTarget> 74 <ErrorReport>prompt</ErrorReport> 75 </PropertyGroup> 76 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 77 <OutputPath>bin\x86\Release\</OutputPath> 78 <DefineConstants>TRACE</DefineConstants> 79 <Optimize>true</Optimize> 80 <DebugType>pdbonly</DebugType> 81 <PlatformTarget>x86</PlatformTarget> 82 <ErrorReport>prompt</ErrorReport> 49 83 </PropertyGroup> 50 84 <ItemGroup> -
libcaca/trunk/caca-sharp/test-csharp.csproj
r3428 r3452 36 36 <DebugType>full</DebugType> 37 37 <Optimize>false</Optimize> 38 <OutputPath> %24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath>38 <OutputPath>..\Debug\</OutputPath> 39 39 <DefineConstants>DEBUG;TRACE</DefineConstants> 40 40 <ErrorReport>prompt</ErrorReport> 41 41 <WarningLevel>4</WarningLevel> 42 <PlatformTarget>x86</PlatformTarget> 42 43 </PropertyGroup> 43 44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 44 45 <DebugType>pdbonly</DebugType> 45 46 <Optimize>true</Optimize> 46 <OutputPath> %24%28SolutionDir%29%24%28ConfigurationName%29\</OutputPath>47 <OutputPath>..\Release\</OutputPath> 47 48 <DefineConstants>TRACE</DefineConstants> 48 49 <ErrorReport>prompt</ErrorReport> 49 50 <WarningLevel>4</WarningLevel> 51 <PlatformTarget>x86</PlatformTarget> 52 </PropertyGroup> 53 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 54 <DebugSymbols>true</DebugSymbols> 55 <OutputPath>..\Debug\</OutputPath> 56 <DefineConstants>DEBUG;TRACE</DefineConstants> 57 <DebugType>full</DebugType> 58 <PlatformTarget>x64</PlatformTarget> 59 <ErrorReport>prompt</ErrorReport> 60 </PropertyGroup> 61 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 62 <OutputPath>..\Release\</OutputPath> 63 <DefineConstants>TRACE</DefineConstants> 64 <Optimize>true</Optimize> 65 <DebugType>pdbonly</DebugType> 66 <PlatformTarget>x64</PlatformTarget> 67 <ErrorReport>prompt</ErrorReport> 50 68 </PropertyGroup> 51 69 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset
for help on using the changeset viewer.