Skip to content

Commit

Permalink
Move sources to src, and add bin for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jun 13, 2013
1 parent 0c2ebab commit 302c467
Show file tree
Hide file tree
Showing 61 changed files with 60 additions and 48 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
bin
obj
.DS_Store
*.userprefs
46 changes: 0 additions & 46 deletions HockeyApp.sln

This file was deleted.

Binary file added bin/HockeyApp.dll
Binary file not shown.
2 changes: 2 additions & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bin
obj
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions src/SampleApp/MainStoryboard.storyboard
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="1.0" toolsVersion="1906" systemVersion="11A511" targetRuntime="iOS.CocoaTouch.iPad" nextObjectID="6" propertyAccessControl="none" initialViewController="2">
<dependencies>
<development defaultVersion="4200" identifier="xcode" />
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="902" />
</dependencies>
<scenes>
<scene sceneID="4">
<objects>
<placeholder placeholderIdentifier="IBFirstResponder" id="3" sceneMemberID="firstResponder" />
<viewController id="2" customClass="SampleAppViewController" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="5">
<rect key="frame" x="0.0" y="20" width="768" height="1004" />
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" />
<subviews />
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite" />
</view>
</viewController>
</objects>
</scene>
</scenes>
<simulatedMetricsContainer key="defaultSimulatedMetrics">
<simulatedStatusBarMetrics key="statusBar" statusBarStyle="blackTranslucent" />
<simulatedOrientationMetrics key="orientation" />
<simulatedScreenMetrics key="destination" />
</simulatedMetricsContainer>
</document>
File renamed without changes.
14 changes: 14 additions & 0 deletions src/SampleApp/SampleAppViewController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using System.Drawing;

using MonoTouch.Foundation;
using MonoTouch.UIKit;

namespace SampleApp
{
public partial class SampleAppViewController : UIViewController
{
public SampleAppViewController (IntPtr handle) : base (handle) { }
}
}

17 changes: 17 additions & 0 deletions src/SampleApp/SampleAppViewController.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 302c467

Please sign in to comment.