-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStampsy.ImageSource.csproj
89 lines (89 loc) · 3.95 KB
/
Stampsy.ImageSource.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D0193D95-CAB9-4659-8706-BFE4D7BA3BF7}</ProjectGuid>
<ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>Stampsy.ImageSource</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>Stampsy.ImageSource</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="monotouch" />
<Reference Include="System.Web.Services" />
</ItemGroup>
<ItemGroup>
<Folder Include="Destinations\" />
<Folder Include="Requests\" />
<Folder Include="Sources\" />
<Folder Include="Descriptions\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Compile Include="Destinations\IDestination.cs" />
<Compile Include="Destinations\FileDestination.cs" />
<Compile Include="Destinations\MemoryDestination.cs" />
<Compile Include="Requests\FileRequest.cs" />
<Compile Include="Requests\Request.cs" />
<Compile Include="Requests\MemoryRequest.cs" />
<Compile Include="Sources\AssetSource.cs" />
<Compile Include="Sources\ISource.cs" />
<Compile Include="Descriptions\AssetDescription.cs" />
<Compile Include="ImageHelper.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Descriptions\ScaledDescription.cs" />
<Compile Include="Sources\ScaledSource.cs" />
<Compile Include="Descriptions\IDescription.cs" />
<Compile Include="ImageSource.cs" />
<Compile Include="Descriptions\DropboxDescription.cs" />
<Compile Include="Sources\DropboxSource.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\rx-monotouch\System.Reactive.csproj">
<Project>{B201C111-F231-4D4A-9500-DF2CA8D5FD33}</Project>
<Name>System.Reactive</Name>
</ProjectReference>
<ProjectReference Include="..\dropbox-monotouch\DropboxSDK\DropboxSDK.csproj">
<Project>{105EF051-3FE5-4B18-B080-52740D2BD1CD}</Project>
<Name>DropboxSDK</Name>
</ProjectReference>
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
<TextStylePolicy inheritsSet="null" scope="text/x-csharp" />
<CSharpFormattingPolicy ElseIfNewLinePlacement="SameLine" AfterDelegateDeclarationParameterComma="True" BeforeSizeOfParentheses="True" BeforeTypeOfParentheses="True" SpacesAfterTypecast="True" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>