MonoCatalogSample was using old XIBs, and those did not use the new backing store system, so they were broken to being with.

	StreamingAudio no longer hardcodes developer "Miguel de Icaza' for the sample
This commit is contained in:
Miguel de Icaza 2011-10-04 12:51:34 -04:00
Родитель 87ebf8712e
Коммит acb8e5b45b
18 изменённых файлов: 166 добавлений и 58 удалений

Просмотреть файл

@ -14,6 +14,7 @@ cycle:
cat output error
dev: $(EXTRA_DEPS) device/$(APPDIR)
-mkdir bin
$(MTOUCH) -bundleid com.novell.monotouch.sample.$(EXE) -dev device/$(APPDIR) -c "iPhone Developer: $(DEVNAME)" $(EXE)
for f in $(DATA); do cp $$f device/$(APPDIR); done
$(MTOUCH) -installdev device/$(APPDIR)

Просмотреть файл

@ -76,5 +76,6 @@ xibs/%.xib.designer.cs: xibs/%.xib
include ../Make.common
xcodeproj:
mkdir -p xcode/MonoCatalog
-mkdir -p xcode/MonoCatalog
-mkdir bin
$(MTOUCH) -nostrip -v -icon=Icon.png -bundleid=com.mono-project.monocatalog -xcode xcode/MonoCatalog -res:xibs/AlertsViewController.xib -res:xibs/ImagesViewController.xib -res=xibs/SearchBarController.xib -res=xibs/TextViewController.xib -res=xibs/WebViewController.xib -res=xibs/ButtonsViewController.xib -res=xibs/MainWindow.xib -res=xibs/SegmentViewController.xib -res=xibs/ToolbarViewController.xib -res=xibs/ControlsViewController.xib -res=xibs/PickerViewController.xib -res=xibs/TextFieldController.xib -res=xibs/TransitionViewController.xib -res=images/12-6AM.png -res=images/6-12PM.png -res=images/blueButton.png -res=images/scene2.jpg -res=images/scene5.jpg -res=images/segment_tools.png -res=images/yellowslide.png -res=images/12-6PM.png -res=images/Icon.png -res=images/orangeslide.png -res=images/scene3.jpg -res=images/segment_check.png -res=images/slider_ball.png -res=images/6-12AM.png -res=images/UIButton_custom.png -res=images/scene1.jpg -res=images/scene4.jpg -res=images/segment_search.png -res=images/whiteButton.png $(EXE) -res=xibs/AddressBookController.xib

Просмотреть файл

@ -14,6 +14,22 @@
[MonoTouch.Foundation.Register("AddressBookController")]
public partial class AddressBookController {
private MonoTouch.UIKit.UIView __mt_view;
private MonoTouch.UIKit.UILabel __mt_firstName;
private MonoTouch.UIKit.UILabel __mt_lastName;
private MonoTouch.UIKit.UISwitch __mt_performAction;
private MonoTouch.UIKit.UISwitch __mt_selectProperty;
private MonoTouch.UIKit.UILabel __mt_property;
private MonoTouch.UIKit.UILabel __mt_identifier;
private MonoTouch.UIKit.UILabel __mt_toString;
#pragma warning disable 0169
[MonoTouch.Foundation.Export("showPicker:")]
partial void showPicker (MonoTouch.UIKit.UIButton sender);
@ -21,9 +37,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}
@ -31,9 +49,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("firstName")]
private MonoTouch.UIKit.UILabel firstName {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("firstName")));
this.__mt_firstName = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("firstName")));
return this.__mt_firstName;
}
set {
this.__mt_firstName = value;
this.SetNativeField("firstName", value);
}
}
@ -41,9 +61,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("lastName")]
private MonoTouch.UIKit.UILabel lastName {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("lastName")));
this.__mt_lastName = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("lastName")));
return this.__mt_lastName;
}
set {
this.__mt_lastName = value;
this.SetNativeField("lastName", value);
}
}
@ -51,9 +73,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("performAction")]
private MonoTouch.UIKit.UISwitch performAction {
get {
return ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("performAction")));
this.__mt_performAction = ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("performAction")));
return this.__mt_performAction;
}
set {
this.__mt_performAction = value;
this.SetNativeField("performAction", value);
}
}
@ -61,9 +85,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("selectProperty")]
private MonoTouch.UIKit.UISwitch selectProperty {
get {
return ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("selectProperty")));
this.__mt_selectProperty = ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("selectProperty")));
return this.__mt_selectProperty;
}
set {
this.__mt_selectProperty = value;
this.SetNativeField("selectProperty", value);
}
}
@ -71,9 +97,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("property")]
private MonoTouch.UIKit.UILabel property {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("property")));
this.__mt_property = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("property")));
return this.__mt_property;
}
set {
this.__mt_property = value;
this.SetNativeField("property", value);
}
}
@ -81,9 +109,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("identifier")]
private MonoTouch.UIKit.UILabel identifier {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("identifier")));
this.__mt_identifier = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("identifier")));
return this.__mt_identifier;
}
set {
this.__mt_identifier = value;
this.SetNativeField("identifier", value);
}
}
@ -91,9 +121,11 @@ public partial class AddressBookController {
[MonoTouch.Foundation.Connect("toString")]
private MonoTouch.UIKit.UILabel toString {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("toString")));
this.__mt_toString = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("toString")));
return this.__mt_toString;
}
set {
this.__mt_toString = value;
this.SetNativeField("toString", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("AlertsViewController")]
public partial class AlertsViewController {
private MonoTouch.UIKit.UITableView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UITableView view {
get {
return ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("ButtonsViewController")]
public partial class ButtonsViewController {
private MonoTouch.UIKit.UITableView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UITableView view {
get {
return ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("ControlsViewController")]
public partial class ControlsViewController {
private MonoTouch.UIKit.UITableView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UITableView view {
get {
return ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,6 +14,12 @@
[MonoTouch.Foundation.Register("ImagesViewController")]
public partial class ImagesViewController {
private MonoTouch.UIKit.UIView __mt_view;
private MonoTouch.UIKit.UIImageView __mt_imageView;
private MonoTouch.UIKit.UISlider __mt_slider;
#pragma warning disable 0169
[MonoTouch.Foundation.Export("sliderAction:")]
partial void sliderAction (MonoTouch.UIKit.UISlider sender);
@ -21,9 +27,11 @@ public partial class ImagesViewController {
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}
@ -31,9 +39,11 @@ public partial class ImagesViewController {
[MonoTouch.Foundation.Connect("imageView")]
private MonoTouch.UIKit.UIImageView imageView {
get {
return ((MonoTouch.UIKit.UIImageView)(this.GetNativeField("imageView")));
this.__mt_imageView = ((MonoTouch.UIKit.UIImageView)(this.GetNativeField("imageView")));
return this.__mt_imageView;
}
set {
this.__mt_imageView = value;
this.SetNativeField("imageView", value);
}
}
@ -41,9 +51,11 @@ public partial class ImagesViewController {
[MonoTouch.Foundation.Connect("slider")]
private MonoTouch.UIKit.UISlider slider {
get {
return ((MonoTouch.UIKit.UISlider)(this.GetNativeField("slider")));
this.__mt_slider = ((MonoTouch.UIKit.UISlider)(this.GetNativeField("slider")));
return this.__mt_slider;
}
set {
this.__mt_slider = value;
this.SetNativeField("slider", value);
}
}

12
MonoCatalogSample/xibs/MainWindow.xib.designer.cs сгенерированный
Просмотреть файл

@ -14,13 +14,19 @@
[MonoTouch.Foundation.Register("AppDelegate")]
public partial class AppDelegate {
private MonoTouch.UIKit.UIWindow __mt_window;
private MonoTouch.UIKit.UINavigationController __mt_navigationController;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("window")]
private MonoTouch.UIKit.UIWindow window {
get {
return ((MonoTouch.UIKit.UIWindow)(this.GetNativeField("window")));
this.__mt_window = ((MonoTouch.UIKit.UIWindow)(this.GetNativeField("window")));
return this.__mt_window;
}
set {
this.__mt_window = value;
this.SetNativeField("window", value);
}
}
@ -28,9 +34,11 @@ public partial class AppDelegate {
[MonoTouch.Foundation.Connect("navigationController")]
private MonoTouch.UIKit.UINavigationController navigationController {
get {
return ((MonoTouch.UIKit.UINavigationController)(this.GetNativeField("navigationController")));
this.__mt_navigationController = ((MonoTouch.UIKit.UINavigationController)(this.GetNativeField("navigationController")));
return this.__mt_navigationController;
}
set {
this.__mt_navigationController = value;
this.SetNativeField("navigationController", value);
}
}

Просмотреть файл

@ -14,6 +14,14 @@
[MonoTouch.Foundation.Register("PickerViewController")]
public partial class PickerViewController {
private MonoTouch.UIKit.UIView __mt_view;
private MonoTouch.UIKit.UISegmentedControl __mt_buttonBarSegmentedControl;
private MonoTouch.UIKit.UISegmentedControl __mt_pickerStyleSegmentedControl;
private MonoTouch.UIKit.UILabel __mt_segmentLabel;
#pragma warning disable 0169
[MonoTouch.Foundation.Export("togglePickerStyle:")]
partial void togglePickerStyle (MonoTouch.UIKit.UISegmentedControl sender);
@ -24,9 +32,11 @@ public partial class PickerViewController {
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}
@ -34,9 +44,11 @@ public partial class PickerViewController {
[MonoTouch.Foundation.Connect("buttonBarSegmentedControl")]
private MonoTouch.UIKit.UISegmentedControl buttonBarSegmentedControl {
get {
return ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("buttonBarSegmentedControl")));
this.__mt_buttonBarSegmentedControl = ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("buttonBarSegmentedControl")));
return this.__mt_buttonBarSegmentedControl;
}
set {
this.__mt_buttonBarSegmentedControl = value;
this.SetNativeField("buttonBarSegmentedControl", value);
}
}
@ -44,9 +56,11 @@ public partial class PickerViewController {
[MonoTouch.Foundation.Connect("pickerStyleSegmentedControl")]
private MonoTouch.UIKit.UISegmentedControl pickerStyleSegmentedControl {
get {
return ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("pickerStyleSegmentedControl")));
this.__mt_pickerStyleSegmentedControl = ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("pickerStyleSegmentedControl")));
return this.__mt_pickerStyleSegmentedControl;
}
set {
this.__mt_pickerStyleSegmentedControl = value;
this.SetNativeField("pickerStyleSegmentedControl", value);
}
}
@ -54,9 +68,11 @@ public partial class PickerViewController {
[MonoTouch.Foundation.Connect("segmentLabel")]
private MonoTouch.UIKit.UILabel segmentLabel {
get {
return ((MonoTouch.UIKit.UILabel)(this.GetNativeField("segmentLabel")));
this.__mt_segmentLabel = ((MonoTouch.UIKit.UILabel)(this.GetNativeField("segmentLabel")));
return this.__mt_segmentLabel;
}
set {
this.__mt_segmentLabel = value;
this.SetNativeField("segmentLabel", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("SearchBarController")]
public partial class SearchBarController {
private MonoTouch.UIKit.UIView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("SegmentViewController")]
public partial class SegmentViewController {
private MonoTouch.UIKit.UIView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("TextFieldController")]
public partial class TextFieldController {
private MonoTouch.UIKit.UITableView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UITableView view {
get {
return ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UITableView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("TextViewController")]
public partial class TextViewController {
private MonoTouch.UIKit.UIView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,6 +14,16 @@
[MonoTouch.Foundation.Register("ToolbarViewController")]
public partial class ToolbarViewController {
private MonoTouch.UIKit.UIView __mt_view;
private MonoTouch.UIKit.UISegmentedControl __mt_barStyleSegControl;
private MonoTouch.UIKit.UISegmentedControl __mt_buttonItemStyleSegControl;
private MonoTouch.UIKit.UIPickerView __mt_systemButtonPicker;
private MonoTouch.UIKit.UISwitch __mt_tintSwitch;
#pragma warning disable 0169
[MonoTouch.Foundation.Export("toggleStyle:")]
partial void toggleStyle (MonoTouch.UIKit.UISegmentedControl sender);
@ -27,9 +37,11 @@ public partial class ToolbarViewController {
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}
@ -37,9 +49,11 @@ public partial class ToolbarViewController {
[MonoTouch.Foundation.Connect("barStyleSegControl")]
private MonoTouch.UIKit.UISegmentedControl barStyleSegControl {
get {
return ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("barStyleSegControl")));
this.__mt_barStyleSegControl = ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("barStyleSegControl")));
return this.__mt_barStyleSegControl;
}
set {
this.__mt_barStyleSegControl = value;
this.SetNativeField("barStyleSegControl", value);
}
}
@ -47,9 +61,11 @@ public partial class ToolbarViewController {
[MonoTouch.Foundation.Connect("buttonItemStyleSegControl")]
private MonoTouch.UIKit.UISegmentedControl buttonItemStyleSegControl {
get {
return ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("buttonItemStyleSegControl")));
this.__mt_buttonItemStyleSegControl = ((MonoTouch.UIKit.UISegmentedControl)(this.GetNativeField("buttonItemStyleSegControl")));
return this.__mt_buttonItemStyleSegControl;
}
set {
this.__mt_buttonItemStyleSegControl = value;
this.SetNativeField("buttonItemStyleSegControl", value);
}
}
@ -57,9 +73,11 @@ public partial class ToolbarViewController {
[MonoTouch.Foundation.Connect("systemButtonPicker")]
private MonoTouch.UIKit.UIPickerView systemButtonPicker {
get {
return ((MonoTouch.UIKit.UIPickerView)(this.GetNativeField("systemButtonPicker")));
this.__mt_systemButtonPicker = ((MonoTouch.UIKit.UIPickerView)(this.GetNativeField("systemButtonPicker")));
return this.__mt_systemButtonPicker;
}
set {
this.__mt_systemButtonPicker = value;
this.SetNativeField("systemButtonPicker", value);
}
}
@ -67,9 +85,11 @@ public partial class ToolbarViewController {
[MonoTouch.Foundation.Connect("tintSwitch")]
private MonoTouch.UIKit.UISwitch tintSwitch {
get {
return ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("tintSwitch")));
this.__mt_tintSwitch = ((MonoTouch.UIKit.UISwitch)(this.GetNativeField("tintSwitch")));
return this.__mt_tintSwitch;
}
set {
this.__mt_tintSwitch = value;
this.SetNativeField("tintSwitch", value);
}
}

Просмотреть файл

@ -14,6 +14,8 @@
[MonoTouch.Foundation.Register("TransitionViewController")]
public partial class TransitionViewController {
private MonoTouch.UIKit.UIView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Export("curlAction:")]
partial void curlAction (MonoTouch.UIKit.UIBarButtonItem sender);
@ -24,9 +26,11 @@ public partial class TransitionViewController {
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -14,13 +14,17 @@
[MonoTouch.Foundation.Register("WebViewController")]
public partial class WebViewController {
private MonoTouch.UIKit.UIView __mt_view;
#pragma warning disable 0169
[MonoTouch.Foundation.Connect("view")]
private MonoTouch.UIKit.UIView view {
get {
return ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
this.__mt_view = ((MonoTouch.UIKit.UIView)(this.GetNativeField("view")));
return this.__mt_view;
}
set {
this.__mt_view = value;
this.SetNativeField("view", value);
}
}

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
@ -10,7 +10,6 @@
<OutputType>Exe</OutputType>
<RootNamespace>StreamingAudio</RootNamespace>
<AssemblyName>StreamingAudio</AssemblyName>
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
@ -21,13 +20,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchDebug>True</MtouchDebug>
<MtouchDebug>true</MtouchDebug>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<MtouchI18n />
<MtouchUseLlvm>false</MtouchUseLlvm>
<MtouchArch>ARMv6</MtouchArch>
<MtouchUseThumb>false</MtouchUseThumb>
<MtouchUseSGen>false</MtouchUseSGen>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugType>none</DebugType>
@ -36,13 +31,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchDebug>False</MtouchDebug>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<MtouchSdkVersion>3.0</MtouchSdkVersion>
<MtouchUseLlvm>false</MtouchUseLlvm>
<MtouchArch>ARMv6</MtouchArch>
<MtouchUseThumb>false</MtouchUseThumb>
<MtouchUseSGen>false</MtouchUseSGen>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
@ -52,14 +42,11 @@
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer: Miguel de Icaza (6YW2BSTNRQ)</CodesignKey>
<MtouchDebug>True</MtouchDebug>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<MtouchSdkVersion>3.0</MtouchSdkVersion>
<MtouchUseLlvm>false</MtouchUseLlvm>
<MtouchArch>ARMv6</MtouchArch>
<MtouchUseThumb>false</MtouchUseThumb>
<MtouchUseSGen>false</MtouchUseSGen>
<IpaPackageName />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugType>none</DebugType>
@ -67,14 +54,9 @@
<OutputPath>bin\iPhone\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer: Miguel de Icaza (6YW2BSTNRQ)</CodesignKey>
<MtouchDebug>False</MtouchDebug>
<CodesignKey>iPhone Developer</CodesignKey>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<MtouchSdkVersion>3.0</MtouchSdkVersion>
<MtouchUseLlvm>false</MtouchUseLlvm>
<MtouchArch>ARMv6</MtouchArch>
<MtouchUseThumb>false</MtouchUseThumb>
<MtouchUseSGen>false</MtouchUseSGen>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />

Просмотреть файл

@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StreamingAudio", "StreamingAudio.csproj", "{63C1A34F-2729-426B-92EA-073C62477053}"
EndProject
Global