~ubuntu-branches/ubuntu/maverick/freeimage/maverick-201010060008

« back to all changes in this revision

Viewing changes to Wrapper/FreeImage.NET/cs/Samples/Sample 02 - Multipaged bitmaps/Sample 02 - Multipaged bitmaps.csproj

  • Committer: Stefano Rivera
  • Date: 2010-07-24 15:39:47 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: stefanor@ubuntu.com-20100724153947-bcu8otnpzm8wbzzg
Tags: 3.13.1-0ubuntu1
* New upstream release. Closes: (LP: #607800)
 - Updated debian/freeimage-get-orig-source script.
 - Removing no longer necessary debian/patches/* and
   the patch system in debian/rules.
 - Updated debian/rules to work with the new Makefiles.
 - Drop from -O3 to -O2 and use lzma compression saves
   ~10 MB of free space. 
* lintian stuff
 - fixed debhelper-but-no-misc-depends
 - fixed ldconfig-symlink-missing-for-shlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 
2
  <PropertyGroup>
 
3
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
4
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
5
    <ProductVersion>8.0.50727</ProductVersion>
 
6
    <SchemaVersion>2.0</SchemaVersion>
 
7
    <ProjectGuid>{AF8B72BD-1A8B-4E6B-A0F1-0BD57497777B}</ProjectGuid>
 
8
    <OutputType>Exe</OutputType>
 
9
    <AppDesignerFolder>Properties</AppDesignerFolder>
 
10
    <RootNamespace>Sample02</RootNamespace>
 
11
    <AssemblyName>Sample02</AssemblyName>
 
12
  </PropertyGroup>
 
13
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 
14
    <DebugSymbols>true</DebugSymbols>
 
15
    <DebugType>full</DebugType>
 
16
    <Optimize>false</Optimize>
 
17
    <OutputPath>bin\Debug\</OutputPath>
 
18
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
19
    <ErrorReport>prompt</ErrorReport>
 
20
    <WarningLevel>4</WarningLevel>
 
21
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
22
  </PropertyGroup>
 
23
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 
24
    <DebugType>none</DebugType>
 
25
    <Optimize>true</Optimize>
 
26
    <OutputPath>bin\Release\</OutputPath>
 
27
    <DefineConstants>TRACE</DefineConstants>
 
28
    <ErrorReport>prompt</ErrorReport>
 
29
    <WarningLevel>4</WarningLevel>
 
30
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
31
  </PropertyGroup>
 
32
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
 
33
    <DebugSymbols>true</DebugSymbols>
 
34
    <OutputPath>bin\Debug\</OutputPath>
 
35
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
36
    <DebugType>full</DebugType>
 
37
    <PlatformTarget>x86</PlatformTarget>
 
38
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
39
    <ErrorReport>prompt</ErrorReport>
 
40
  </PropertyGroup>
 
41
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
 
42
    <OutputPath>bin\Release\</OutputPath>
 
43
    <DefineConstants>TRACE</DefineConstants>
 
44
    <Optimize>true</Optimize>
 
45
    <DebugType>
 
46
    </DebugType>
 
47
    <PlatformTarget>x86</PlatformTarget>
 
48
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
49
    <ErrorReport>prompt</ErrorReport>
 
50
  </PropertyGroup>
 
51
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
 
52
    <DebugSymbols>true</DebugSymbols>
 
53
    <OutputPath>bin\Debug\</OutputPath>
 
54
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
55
    <DebugType>full</DebugType>
 
56
    <PlatformTarget>x64</PlatformTarget>
 
57
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
58
    <ErrorReport>prompt</ErrorReport>
 
59
  </PropertyGroup>
 
60
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
 
61
    <OutputPath>bin\Release\</OutputPath>
 
62
    <DefineConstants>TRACE</DefineConstants>
 
63
    <Optimize>true</Optimize>
 
64
    <DebugType>
 
65
    </DebugType>
 
66
    <PlatformTarget>x64</PlatformTarget>
 
67
    <UseVSHostingProcess>false</UseVSHostingProcess>
 
68
    <ErrorReport>prompt</ErrorReport>
 
69
  </PropertyGroup>
 
70
  <ItemGroup>
 
71
    <Reference Include="System" />
 
72
    <Reference Include="System.Drawing" />
 
73
  </ItemGroup>
 
74
  <ItemGroup>
 
75
    <Compile Include="Program.cs" />
 
76
    <Compile Include="Properties\AssemblyInfo.cs" />
 
77
  </ItemGroup>
 
78
  <ItemGroup>
 
79
    <None Include="multipaged.tif">
 
80
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 
81
    </None>
 
82
  </ItemGroup>
 
83
  <ItemGroup>
 
84
    <ProjectReference Include="..\..\Library\Library.csproj">
 
85
      <Project>{6598A7CD-8F27-4D3F-A675-5AE63113A7C3}</Project>
 
86
      <Name>Library</Name>
 
87
    </ProjectReference>
 
88
  </ItemGroup>
 
89
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 
90
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
 
91
       Other similar extension points exist, see Microsoft.Common.targets.
 
92
  <Target Name="BeforeBuild">
 
93
  </Target>
 
94
  <Target Name="AfterBuild">
 
95
  </Target>
 
96
  -->
 
97
</Project>
 
 
b'\\ No newline at end of file'