/SparkleShare/Mac/SparkleShare.csproj

http://github.com/hbons/SparkleShare · MSBuild · 296 lines · 296 code · 0 blank · 0 comment · 5 complexity · 4d9136422c922d7053a5d6113cd6a1fc MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{CF5BC8DB-A633-4FCC-8A3E-E3AC9B59FABC}</ProjectGuid>
  9. <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Exe</OutputType>
  11. <RootNamespace>SparkleShare</RootNamespace>
  12. <AssemblyName>SparkleShare</AssemblyName>
  13. <ReleaseVersion>
  14. </ReleaseVersion>
  15. <SuppressXamMacMigration>True</SuppressXamMacMigration>
  16. <SuppressXamMacUpsell>True</SuppressXamMacUpsell>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  19. <DebugType>none</DebugType>
  20. <Optimize>False</Optimize>
  21. <OutputPath>bin\Release</OutputPath>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <CustomCommands>
  25. <CustomCommands>
  26. <Command type="AfterBuild" command="${ProjectDir}/postBuild.sh ${TargetDir}/${SolutionName}.app" />
  27. </CustomCommands>
  28. </CustomCommands>
  29. <EnableCodeSigning>False</EnableCodeSigning>
  30. <CreatePackage>False</CreatePackage>
  31. <EnablePackageSigning>False</EnablePackageSigning>
  32. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  33. <ConsolePause>False</ConsolePause>
  34. <UseSGen>false</UseSGen>
  35. <UseRefCounting>false</UseRefCounting>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  38. <Optimize>False</Optimize>
  39. <OutputPath>bin\Debug</OutputPath>
  40. <DefineConstants>DEBUG</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. <CustomCommands>
  44. <CustomCommands>
  45. <Command type="AfterBuild" command="${ProjectDir}/postBuild.sh ${TargetDir}/${SolutionName}.app" />
  46. </CustomCommands>
  47. </CustomCommands>
  48. <EnableCodeSigning>False</EnableCodeSigning>
  49. <CreatePackage>False</CreatePackage>
  50. <EnablePackageSigning>False</EnablePackageSigning>
  51. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  52. <ConsolePause>False</ConsolePause>
  53. <DebugSymbols>true</DebugSymbols>
  54. <UseSGen>false</UseSGen>
  55. <UseRefCounting>false</UseRefCounting>
  56. </PropertyGroup>
  57. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseDist|AnyCPU' ">
  58. <Optimize>false</Optimize>
  59. <OutputPath>bin\ReleaseDist</OutputPath>
  60. <WarningLevel>4</WarningLevel>
  61. <UseSGen>false</UseSGen>
  62. <IncludeMonoRuntime>false</IncludeMonoRuntime>
  63. <EnablePackageSigning>false</EnablePackageSigning>
  64. <CustomCommands>
  65. <CustomCommands>
  66. <Command type="AfterBuild" command="${ProjectDir}/postBuild.sh ${TargetDir}/${SolutionName}.app" />
  67. <Command type="AfterBuild" command="${ProjectDir}/packReleaseDist.sh ${TargetDir}/${SolutionName}.app" />
  68. </CustomCommands>
  69. </CustomCommands>
  70. <EnableCodeSigning>false</EnableCodeSigning>
  71. <CreatePackage>false</CreatePackage>
  72. </PropertyGroup>
  73. <ItemGroup>
  74. <Reference Include="System" />
  75. <Reference Include="System.Xml" />
  76. <Reference Include="System.Drawing" />
  77. <Reference Include="System.Net" />
  78. <Reference Include="Mono.Posix" />
  79. <Reference Include="MonoMac">
  80. <HintPath>..\..\..\monomac\src\MonoMac.dll</HintPath>
  81. </Reference>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Compile Include="AppDelegate.cs">
  85. <DependentUpon>MainMenu.xib</DependentUpon>
  86. </Compile>
  87. <Compile Include="MainMenu.xib.designer.cs">
  88. <DependentUpon>MainMenu.xib</DependentUpon>
  89. </Compile>
  90. <Compile Include="..\SparkleControllerBase.cs">
  91. <Link>SparkleControllerBase.cs</Link>
  92. </Compile>
  93. <Compile Include="SparkleStatusIcon.cs" />
  94. <Compile Include="SparkleUI.cs" />
  95. <Compile Include="..\Program.cs">
  96. <Link>Program.cs</Link>
  97. </Compile>
  98. <Compile Include="SparkleMacWatcher.cs" />
  99. <Compile Include="SparkleEventLog.cs" />
  100. <Compile Include="SparkleBubbles.cs" />
  101. <Compile Include="SparkleSetup.cs" />
  102. <Compile Include="SparkleSetupWindow.cs" />
  103. <Compile Include="..\SparkleBubblesController.cs">
  104. <Link>SparkleBubblesController.cs</Link>
  105. </Compile>
  106. <Compile Include="..\SparkleEventLogController.cs">
  107. <Link>SparkleEventLogController.cs</Link>
  108. </Compile>
  109. <Compile Include="..\SparkleSetupController.cs">
  110. <Link>SparkleSetupController.cs</Link>
  111. </Compile>
  112. <Compile Include="..\SparkleStatusIconController.cs">
  113. <Link>SparkleStatusIconController.cs</Link>
  114. </Compile>
  115. <Compile Include="..\SparkleAboutController.cs">
  116. <Link>SparkleAboutController.cs</Link>
  117. </Compile>
  118. <Compile Include="SparkleController.cs" />
  119. <Compile Include="..\SparklePlugin.cs">
  120. <Link>SparklePlugin.cs</Link>
  121. </Compile>
  122. <Compile Include="SparkleAbout.cs" />
  123. <Compile Include="..\SparkleInvite.cs">
  124. <Link>SparkleInvite.cs</Link>
  125. </Compile>
  126. <Compile Include="..\SparkleKeys.cs">
  127. <Link>SparkleKeys.cs</Link>
  128. </Compile>
  129. <Compile Include="..\SparkleAvatars.cs" />
  130. <Compile Include="..\SparkleNoteController.cs">
  131. <Link>SparkleNoteController.cs</Link>
  132. </Compile>
  133. <Compile Include="SparkleNote.cs" />
  134. </ItemGroup>
  135. <ItemGroup>
  136. <InterfaceDefinition Include="MainMenu.xib" xmlns="" />
  137. </ItemGroup>
  138. <ItemGroup>
  139. <None Include="Info.plist" />
  140. </ItemGroup>
  141. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  142. <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
  143. <ItemGroup>
  144. <Content Include="..\Common\HTML\day-entry.html">
  145. <Link>HTML\day-entry.html</Link>
  146. </Content>
  147. <Content Include="..\Common\HTML\event-entry.html">
  148. <Link>HTML\event-entry.html</Link>
  149. </Content>
  150. <Content Include="..\Common\HTML\event-log.html">
  151. <Link>HTML\event-log.html</Link>
  152. </Content>
  153. <Content Include="Resources\sparkleshare-folder.icns">
  154. <Link>sparkleshare-folder.icns</Link>
  155. </Content>
  156. <Content Include="Resources\sparkleshare-app.icns">
  157. <Link>sparkleshare-app.icns</Link>
  158. </Content>
  159. <Content Include="..\Common\HTML\jquery.js">
  160. <Link>HTML\jquery.js</Link>
  161. </Content>
  162. <Content Include="Resources\sparkleshare-folder-yosemite.icns">
  163. <Link>sparkleshare-folder-yosemite.icns</Link>
  164. </Content>
  165. </ItemGroup>
  166. <ItemGroup>
  167. <Folder Include="Resources\" />
  168. <Folder Include="HTML\" />
  169. <Folder Include="Plugins\" />
  170. </ItemGroup>
  171. <ItemGroup>
  172. <ProjectReference Include="..\..\SparkleLib\SparkleLib.csproj">
  173. <Project>{2C914413-B31C-4362-93C7-1AE34F09112A}</Project>
  174. <Name>SparkleLib</Name>
  175. </ProjectReference>
  176. <ProjectReference Include="..\..\SparkleLib\Git\SparkleLib.Git.csproj">
  177. <Project>{009FDCD7-1D57-4202-BB6D-8477D8C6B8EE}</Project>
  178. <Name>SparkleLib.Git</Name>
  179. </ProjectReference>
  180. </ItemGroup>
  181. <ItemGroup>
  182. <BundleResource Include="..\Common\Pixmaps\side-splash.png">
  183. <Link>Resources\side-splash.png</Link>
  184. </BundleResource>
  185. <BundleResource Include="..\Linux\Pixmaps\icons\document-added-12.png">
  186. <Link>Resources\document-added-12.png</Link>
  187. </BundleResource>
  188. <BundleResource Include="..\Linux\Pixmaps\icons\document-edited-12.png">
  189. <Link>Resources\document-edited-12.png</Link>
  190. </BundleResource>
  191. <BundleResource Include="..\Linux\Pixmaps\icons\document-deleted-12.png">
  192. <Link>Resources\document-deleted-12.png</Link>
  193. </BundleResource>
  194. <BundleResource Include="..\Linux\Pixmaps\icons\document-moved-12.png">
  195. <Link>Resources\document-moved-12.png</Link>
  196. </BundleResource>
  197. <BundleResource Include="..\Common\Pixmaps\about.png">
  198. <Link>Resources\about.png</Link>
  199. </BundleResource>
  200. <BundleResource Include="Resources\tutorial-slide-3.png">
  201. <Link>Resources\tutorial-slide-3.png</Link>
  202. </BundleResource>
  203. <BundleResource Include="Resources\process-syncing-down.png" />
  204. <BundleResource Include="Resources\process-syncing-error.png" />
  205. <BundleResource Include="Resources\process-syncing-idle.png" />
  206. <BundleResource Include="Resources\process-syncing-up.png" />
  207. <BundleResource Include="Resources\process-syncing.png" />
  208. <BundleResource Include="..\Common\Pixmaps\user-icon-default.png">
  209. <Link>Resources\user-icon-default.png</Link>
  210. </BundleResource>
  211. <BundleResource Include="..\Common\Pixmaps\side-splash%402x.png">
  212. <Link>Resources\side-splash%402x.png</Link>
  213. </BundleResource>
  214. <BundleResource Include="Resources\process-syncing-down%402x.png" />
  215. <BundleResource Include="Resources\process-syncing-error%402x.png" />
  216. <BundleResource Include="Resources\process-syncing-idle%402x.png" />
  217. <BundleResource Include="Resources\process-syncing-up%402x.png" />
  218. <BundleResource Include="Resources\process-syncing%402x.png" />
  219. <BundleResource Include="..\Common\Pixmaps\about%402x.png">
  220. <Link>Resources\about%402x.png</Link>
  221. </BundleResource>
  222. <BundleResource Include="..\Common\Pixmaps\tutorial-slide-1.png">
  223. <Link>Resources\tutorial-slide-1.png</Link>
  224. </BundleResource>
  225. <BundleResource Include="..\Common\Pixmaps\tutorial-slide-1%402x.png">
  226. <Link>Resources\tutorial-slide-1%402x.png</Link>
  227. </BundleResource>
  228. <BundleResource Include="..\Common\Pixmaps\tutorial-slide-2.png">
  229. <Link>Resources\tutorial-slide-2.png</Link>
  230. </BundleResource>
  231. <BundleResource Include="..\Common\Pixmaps\tutorial-slide-2%402x.png">
  232. <Link>Resources\tutorial-slide-2%402x.png</Link>
  233. </BundleResource>
  234. <BundleResource Include="..\Common\Plugins\bitbucket%402x.png">
  235. <Link>Plugins\bitbucket%402x.png</Link>
  236. </BundleResource>
  237. <BundleResource Include="..\Common\Plugins\github%402x.png">
  238. <Link>Plugins\github%402x.png</Link>
  239. </BundleResource>
  240. <BundleResource Include="..\Common\Plugins\gitorious%402x.png">
  241. <Link>Plugins\gitorious%402x.png</Link>
  242. </BundleResource>
  243. <BundleResource Include="..\Common\Plugins\own-server%402x.png">
  244. <Link>Plugins\own-server%402x.png</Link>
  245. </BundleResource>
  246. <BundleResource Include="..\Common\Plugins\ssnet%402x.png">
  247. <Link>Plugins\ssnet%402x.png</Link>
  248. </BundleResource>
  249. <BundleResource Include="..\Common\Plugins\bitbucket.xml">
  250. <Link>Plugins\bitbucket.xml</Link>
  251. </BundleResource>
  252. <BundleResource Include="..\Common\Plugins\github.xml">
  253. <Link>Plugins\github.xml</Link>
  254. </BundleResource>
  255. <BundleResource Include="..\Common\Plugins\gitorious.xml">
  256. <Link>Plugins\gitorious.xml</Link>
  257. </BundleResource>
  258. <BundleResource Include="..\Common\Plugins\own-server.xml">
  259. <Link>Plugins\own-server.xml</Link>
  260. </BundleResource>
  261. <BundleResource Include="..\Common\Plugins\bitbucket.png">
  262. <Link>Plugins\bitbucket.png</Link>
  263. </BundleResource>
  264. <BundleResource Include="..\Common\Plugins\github.png">
  265. <Link>Plugins\github.png</Link>
  266. </BundleResource>
  267. <BundleResource Include="..\Common\Plugins\gitorious.png">
  268. <Link>Plugins\gitorious.png</Link>
  269. </BundleResource>
  270. <BundleResource Include="..\Common\Plugins\own-server.png">
  271. <Link>Plugins\own-server.png</Link>
  272. </BundleResource>
  273. <BundleResource Include="..\Common\Plugins\ssnet.png">
  274. <Link>Plugins\ssnet.png</Link>
  275. </BundleResource>
  276. <BundleResource Include="..\Common\Plugins\ssnet.xml">
  277. <Link>Plugins\ssnet.xml</Link>
  278. </BundleResource>
  279. <BundleResource Include="Resources\tutorial-slide-3%402x.png" />
  280. <BundleResource Include="..\Common\Plugins\planio.png">
  281. <Link>Plugins\planio.png</Link>
  282. </BundleResource>
  283. <BundleResource Include="..\Common\Plugins\planio.xml">
  284. <Link>Plugins\planio.xml</Link>
  285. </BundleResource>
  286. <BundleResource Include="..\Common\Plugins\planio%402x.png">
  287. <Link>Plugins\planio%402x.png</Link>
  288. </BundleResource>
  289. <BundleResource Include="..\Common\Pixmaps\text-balloon.png">
  290. <Link>Resources\text-balloon.png</Link>
  291. </BundleResource>
  292. <BundleResource Include="..\Common\Pixmaps\text-balloon%402x.png">
  293. <Link>Resources\text-balloon%402x.png</Link>
  294. </BundleResource>
  295. </ItemGroup>
  296. </Project>