Skip to content

Instantly share code, notes, and snippets.

@iulian0512
iulian0512 / geos3.10.2-makefile-iossimulator
Created May 10, 2022 09:49
geos 3.10.2 ios simulator makefile
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:
<?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>
"editor.tokenColorCustomizations": {
"[graygraygray]": {
"variables": "#1F377F",
"keywords": "#0000FF",
"functions": "#9A651F",
"types": "#257d97",
"strings": "#E64242",
"comments": "#008000",
"numbers": "#000000",
"textMateRules": [
{
"$schema": "vscode://schemas/color-theme",
"type": "light",
"colors": {
"badge.background": "#0060f0",
"badge.foreground": "#ffffff",
"breadcrumb.focusForeground": "#0000ff",
"breadcrumb.foreground": "#000000",
"contrastActiveBorder": "#0000ff",
"contrastBorder": "#000000",
@iulian0512
iulian0512 / Program.cs
Last active September 26, 2019 15:23
automapper crash .net 4.7.2
using AutoMapper;
using AutoMapper.Data;
using System;
using System.Collections.Generic;
using System.Data;
namespace automappercrash
{
public interface dummyinterface