Before continuting to the next step, let's clear some nuget caches that might get in the way.
dotnet nuget locals all --clear| #!/bin/bash | |
| # | |
| #Usage: | |
| #1.) Install cygwin and make sure you select the following packages: | |
| #- gcc-mingw | |
| #- pkg-config | |
| #- mingw-zlib1 | |
| #- mingw-zlib-devel | |
| # | |
| #2.) Install the following Mono release package: "Mono for Windows, Gtk#, and XSP" |
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace Circuit | |
| { | |
| public static class Dsp | |
| { | |
| class FftSetupD : IDisposable | |
| { | |
| public IntPtr Handle; |
| public class MultilineEditElement : StringElement | |
| { | |
| static NSString skey = new NSString("multilineeditelement"); | |
| public MultilineEditElement(string caption, string val) : base(caption, val) | |
| { | |
| } | |
| class MyViewController : UIViewController { | |
| MultilineEditElement container; |
| // This file is shared both with a MonoTouch iOS and ASP.NET MVC 3 + .NET 4 project. | |
| // The result of Encrypt differs because of the default selected mode. | |
| // See line 94 for information. | |
| public static class EncryptionHelper | |
| { | |
| /// <summary> | |
| /// Default key | |
| /// </summary> |
| var target = UIATarget.localTarget(); | |
| var window = UIATarget.localTarget().frontMostApp().mainWindow (); | |
| var table = window.tableViews () [0]; | |
| var results_cell = table.cells () [0] | |
| var run_cell = table.cells () [1]; | |
| var passed = false; | |
| var results = ''; | |
| run_cell.tap (); |
| using System; | |
| using System.Threading; | |
| using MonoTouch.Foundation; | |
| using MonoTouch.UIKit; | |
| using MonoTouch.CoreFoundation; | |
| namespace MobileAgent | |
| { | |
| public class Appirator |
| // | |
| // main.m | |
| // ProtectTest | |
| // Demonstrates newer versions of iOS now support PROT_EXEC pages, for just-in-time compilation. | |
| // | |
| // Must be compiled with Thumb disabled | |
| // | |
| // Created by Stuart Carnie on 3/4/11. | |
| // Copyright 2011 Manomio LLC. All rights reserved. | |
| // |