source: libpipi/trunk/ThePimp/ThePimp.csproj @ 2914

Last change on this file since 2914 was 2914, checked in by Sam Hocevar, 15 years ago

Create Visual Studio build files for libpipi, pipi-sharp and The Pimp.

File size: 5.0 KB
Line 
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>{D681A55E-B8E2-4741-87E6-49500109D6E0}</ProjectGuid>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>ThePimp</RootNamespace>
11    <AssemblyName>Pimp</AssemblyName>
12  </PropertyGroup>
13  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
14    <DebugSymbols>true</DebugSymbols>
15    <DebugType>full</DebugType>
16    <Optimize>false</Optimize>
17    <OutputPath>.\</OutputPath>
18    <DefineConstants>DEBUG;TRACE</DefineConstants>
19    <ErrorReport>prompt</ErrorReport>
20    <WarningLevel>4</WarningLevel>
21  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
23    <DebugType>pdbonly</DebugType>
24    <Optimize>true</Optimize>
25    <OutputPath>.\</OutputPath>
26    <DefineConstants>TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <ItemGroup>
31    <Reference Include="atk-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
32      <SpecificVersion>False</SpecificVersion>
33      <HintPath>..\win32\assembly\atk-sharp.dll</HintPath>
34    </Reference>
35    <Reference Include="gdk-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
36      <SpecificVersion>False</SpecificVersion>
37      <HintPath>..\win32\assembly\gdk-sharp.dll</HintPath>
38    </Reference>
39    <Reference Include="glade-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
40      <SpecificVersion>False</SpecificVersion>
41      <HintPath>..\win32\assembly\glade-sharp.dll</HintPath>
42    </Reference>
43    <Reference Include="glib-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
44      <SpecificVersion>False</SpecificVersion>
45      <HintPath>..\win32\assembly\glib-sharp.dll</HintPath>
46    </Reference>
47    <Reference Include="gtk-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
48      <SpecificVersion>False</SpecificVersion>
49      <HintPath>..\win32\assembly\gtk-sharp.dll</HintPath>
50    </Reference>
51    <Reference Include="gtkglarea-sharp, Version=0.0.3.0, Culture=neutral, PublicKeyToken=7df758c0fb49fe62, processorArchitecture=MSIL">
52      <SpecificVersion>False</SpecificVersion>
53      <HintPath>..\win32\assembly\gtkglarea-sharp.dll</HintPath>
54    </Reference>
55    <Reference Include="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
56      <SpecificVersion>False</SpecificVersion>
57      <HintPath>..\win32\assembly\Mono.Posix.dll</HintPath>
58    </Reference>
59    <Reference Include="pango-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
60      <SpecificVersion>False</SpecificVersion>
61      <HintPath>..\win32\assembly\pango-sharp.dll</HintPath>
62    </Reference>
63    <Reference Include="System" />
64    <Reference Include="System.Data" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="AboutWindow.cs" />
68    <Compile Include="AssemblyInfo.cs" />
69    <Compile Include="Main.cs" />
70    <Compile Include="MainWindow.cs" />
71    <Compile Include="NewFile.cs" />
72    <Compile Include="OpenFile.cs" />
73    <Compile Include="PictureView.cs" />
74    <Compile Include="SaveFile.cs" />
75    <Compile Include="ToolBox.cs" />
76    <Compile Include="gtk-gui\generated.cs" />
77    <Compile Include="gtk-gui\ThePimp.AboutWindow.cs" />
78    <Compile Include="gtk-gui\ThePimp.MainWindow.cs" />
79    <Compile Include="gtk-gui\ThePimp.NewFile.cs" />
80    <Compile Include="gtk-gui\ThePimp.OpenFile.cs" />
81    <Compile Include="gtk-gui\ThePimp.PictureView.cs" />
82    <Compile Include="gtk-gui\ThePimp.SaveFile.cs" />
83    <Compile Include="gtk-gui\ThePimp.ToolBox.cs" />
84  </ItemGroup>
85  <ItemGroup>
86    <ProjectReference Include="..\pipi-sharp\pipi-sharp.csproj">
87      <Project>{FD11AF71-DCBE-4861-9DC6-EE4C6FD951C0}</Project>
88      <Name>pipi-sharp</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <EmbeddedResource Include="images\about.png" />
93  </ItemGroup>
94  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets. -->
97  <Target Name="BeforeBuild">
98    <CreateItem Include="..\win32\dist\**\*.*" Exclude="..\win32\**\.svn\**">
99      <Output TaskParameter="Include" ItemName="DistInclude" />
100    </CreateItem>
101    <Copy Sourcefiles="@(DistInclude)" DestinationFolder="$(OutDir)\%(RecursiveDir)" />
102  </Target>
103  <Target Name="AfterBuild">
104  </Target>
105</Project>
Note: See TracBrowser for help on using the repository browser.