View geos3.10.2-makefile-iossimulator
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
XCODE_DEVELOPER = $(shell xcode-select --print-path) | |
#used for selecting the sdk dir | |
IOS_PLATFORM ?= iPhoneOS | |
# Pick latest SDK in the directory | |
IOS_PLATFORM_DEVELOPER = ${XCODE_DEVELOPER}/Platforms/${IOS_PLATFORM}.platform/Developer | |
IOS_SDK = ${IOS_PLATFORM_DEVELOPER}/SDKs/$(shell ls ${IOS_PLATFORM_DEVELOPER}/SDKs | sort -r | head -n1) | |
all: |
View crashinginfo.plist
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>$(DEVELOPMENT_LANGUAGE)</string> | |
<key>CFBundleExecutable</key> | |
<string>$(EXECUTABLE_NAME)</string> | |
<key>CFBundleIdentifier</key> | |
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> |
View my editor.tokenColorCustomizations
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
"editor.tokenColorCustomizations": { | |
"[graygraygray]": { | |
"variables": "#1F377F", | |
"keywords": "#0000FF", | |
"functions": "#9A651F", | |
"types": "#257d97", | |
"strings": "#E64242", | |
"comments": "#008000", | |
"numbers": "#000000", | |
"textMateRules": [ |
View mydartcoloringscheme.jsonc
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
Show hidden characters
{ | |
"$schema": "vscode://schemas/color-theme", | |
"type": "light", | |
"colors": { | |
"badge.background": "#0060f0", | |
"badge.foreground": "#ffffff", | |
"breadcrumb.focusForeground": "#0000ff", | |
"breadcrumb.foreground": "#000000", | |
"contrastActiveBorder": "#0000ff", | |
"contrastBorder": "#000000", |
View Program.cs
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 AutoMapper; | |
using AutoMapper.Data; | |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
namespace automappercrash | |
{ | |
public interface dummyinterface |