This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e -x | |
mkdir test-tmp | |
cd test-tmp | |
dotnet new nunit | |
# dotnet test -v diag -fl -flp:logfile=test.log | |
dotnet test --property:VsTestUseMSBuildOutput=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rosseta | |
/usr/sbin/softwareupdate --install-rosetta --agree-to-license | |
# Xcode Command Line Tools (Need Xcode) | |
xcode-select --install | |
sudo xcode-select -s /Applications/Xcode.app | |
# Microsoft OpenJDK 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class TestClass | |
{ | |
static string GetMsBuildPath(int versionMajor, string pathContains) | |
{ | |
var defaultDirectories = new[] | |
{ | |
Path.Combine(System.Environment.GetEnvironmentVariable("HOME"), "Library/Caches/VisualStudio"), | |
"/Library/Frameworks/Mono.framework/Versions", | |
"/usr/local/share/dotnet/sdk", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script> | |
<h1>HybridWebView Test</h1> | |
<br /> | |
Enter name: <input type="text" id="name"> | |
<br /> | |
<br /> | |
<button type="button" onclick="javascript: invokeCSCode($('#name').val());">Invoke C# Code</button> | |
<br /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@" | |
document.body.addEventListener('click', function(e) { | |
e = e || window.event; | |
var target = e.target || e.srcElement; | |
Native('invokeClick', 'tag='+target.tagName+' id='+target.id+' name='+target.name); | |
}, true /* to ensure we capture it first*/); | |
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class PageSpecific | |
{ | |
public static readonly BindableProperty BackSwipeEnableProperty = | |
BindableProperty.Create("BackSwipeEnable", typeof(bool), typeof(Page), true, BindingMode.OneTime); | |
public static bool GetBackSwipeEnable(BindableObject element) | |
=> (bool) element.GetValue(BackSwipeEnableProperty); | |
public static void SetBackSwipeEnable(BindableObject element, bool value) | |
=> element.SetValue(BackSwipeEnableProperty, value); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using Foundation; | |
using Xamarin.Essentials; | |
using Xamarin.Forms; | |
namespace MyNamespace | |
{ | |
public class DisplayHelper | |
{ | |
const string IphoneModelPrefix = "iphone"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net5.0</TargetFramework> | |
</PropertyGroup> | |
<!--<Target Name="GenerateResx" AfterTargets="BeforeBuild"> | |
<Message Text="Check Resources.Designer.cs" Importance="high" /> | |
<Message Text="Generating Designer Files..." /> | |
<GenerateResource Sources="@(EmbeddedResource)" StronglyTypedLanguage="cs" StronglyTypedClassName="%(Filename)" StronglyTypedNamespace="@(EmbeddedResource->'%(CustomToolNamespace)')" StronglyTypedFileName="@(EmbeddedResource->'%(RootDir)%(Directory)%(Filename).designer.cs')" PublicClass="true" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
namespace Sync | |
{ | |
public static class RunSyncUtil | |
{ | |
private static readonly TaskFactory factory = new | |
TaskFactory(default, | |
TaskCreationOptions.None, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== Visual Studio Community 2019 for Mac === | |
Version 8.8.10 (build 2) | |
Installation UUID: f8caf6ef-1bee-4228-a7ca-ccc3745efdd9 | |
GTK+ 2.24.23 (Raleigh theme) | |
Xamarin.Mac 6.18.0.23 (d16-6 / 088c73638) | |
Package version: 612000122 | |
=== Mono Framework MDK === |
NewerOlder