Skip to content

Commit 4bfa740

Browse files
Merge pull request #11 from ChrisTitusTech/F#
F# Conversion
2 parents 766824b + fb0dd68 commit 4bfa740

2,209 files changed

Lines changed: 1215 additions & 7958 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 327 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,332 @@
1+
# Rust build artifacts
12
/target
23
/build
34
rust/target
45
rust/build
56
/build/macutil
7+
8+
# F# and .NET build artifacts
9+
## Ignore Visual Studio temporary files, build results, and
10+
## files generated by popular Visual Studio add-ons.
11+
12+
# User-specific files
13+
*.rsuser
14+
*.suo
15+
*.user
16+
*.userosscache
17+
*.sln.docstates
18+
19+
# User-specific files (MonoDevelop/Xamarin Studio)
20+
*.userprefs
21+
22+
# Build results
23+
[Dd]ebug/
24+
[Dd]ebugPublic/
25+
[Rr]elease/
26+
[Rr]eleases/
27+
x64/
28+
x86/
29+
[Aa][Rr][Mm]/
30+
[Aa][Rr][Mm]64/
31+
bld/
32+
[Bb]in/
33+
[Oo]bj/
34+
[Ll]og/
35+
36+
# F# specific
37+
*.fsproj.user
38+
*.fsx.lock
39+
40+
# .NET Core
41+
project.lock.json
42+
project.fragment.lock.json
43+
artifacts/
44+
45+
# StyleCop
46+
StyleCopReport.xml
47+
48+
# Files built by Visual Studio
49+
*_i.c
50+
*_p.c
51+
*_h.h
52+
*.ilk
53+
*.meta
54+
*.obj
55+
*.iobj
56+
*.pch
57+
*.pdb
58+
*.ipdb
59+
*.pgc
60+
*.pgd
61+
*.rsp
62+
*.sbr
63+
*.tlb
64+
*.tli
65+
*.tlh
66+
*.tmp
67+
*.tmp_proj
68+
*_wpftmp.csproj
69+
*.log
70+
*.vspscc
71+
*.vssscc
72+
.builds
73+
*.pidb
74+
*.svclog
75+
*.scc
76+
77+
# Chutzpah Test files
78+
_Chutzpah*
79+
80+
# Visual C++ cache files
81+
ipch/
82+
*.aps
83+
*.ncb
84+
*.opendb
85+
*.opensdf
86+
*.sdf
87+
*.cachefile
88+
*.VC.db
89+
*.VC.VC.opendb
90+
91+
# Visual Studio profiler
92+
*.psess
93+
*.vsp
94+
*.vspx
95+
*.sap
96+
97+
# Visual Studio Trace Files
98+
*.e2e
99+
100+
# TFS 2012 Local Workspace
101+
$tf/
102+
103+
# Guidance Automation Toolkit
104+
*.gpState
105+
106+
# ReSharper is a .NET coding add-in
107+
_ReSharper*/
108+
*.[Rr]e[Ss]harper
109+
*.DotSettings.user
110+
111+
# JustCode is a .NET coding add-in
112+
.JustCode
113+
114+
# TeamCity is a build add-in
115+
_TeamCity*
116+
117+
# DotCover is a Code Coverage Tool
118+
*.dotCover
119+
120+
# AxoCover is a Code Coverage Tool
121+
.axoCover/*
122+
!.axoCover/settings.json
123+
124+
# Visual Studio code coverage results
125+
*.coverage
126+
*.coveragexml
127+
128+
# NCrunch
129+
_NCrunch_*
130+
.*crunch*.local.xml
131+
nCrunchTemp_*
132+
133+
# MightyMoose
134+
*.mm.*
135+
AutoTest.Net/
136+
137+
# Web workbench (sass)
138+
.sass-cache/
139+
140+
# Installshield output folder
141+
[Ee]xpress/
142+
143+
# DocProject is a documentation generator add-in
144+
DocProject/buildhelp/
145+
DocProject/Help/*.HxT
146+
DocProject/Help/*.HxC
147+
DocProject/Help/Html2
148+
DocProject/Help/html
149+
150+
# Click-Once directory
151+
publish/
152+
153+
# Publish Web Output
154+
*.[Pp]ublish.xml
155+
*.azurePubxml
156+
# Note: Comment the next line if you want to checkin your web deploy settings,
157+
# but database connection strings (with potential passwords) will be unencrypted
158+
*.pubxml
159+
*.publishproj
160+
161+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
162+
# checkin your Azure Web App publish settings, but sensitive information contained
163+
# in these files may be unencrypted
164+
*.azurePubxml
165+
# Note: Comment the next line if you want to checkin your web deploy settings,
166+
# but database connection strings (with potential passwords) will be unencrypted
167+
*.pubxml
168+
*.publishproj
169+
170+
# Microsoft Azure Build Output
171+
csx/
172+
*.build.csdef
173+
174+
# Microsoft Azure Emulator
175+
ecf/
176+
rcf/
177+
178+
# Windows Store app package directories and files
179+
AppPackages/
180+
BundleArtifacts/
181+
Package.StoreAssociation.xml
182+
_pkginfo.txt
183+
*.appx
184+
185+
# Visual Studio cache files
186+
# files ending in .cache can be ignored
187+
*.[Cc]ache
188+
# but keep track of directories ending in .cache
189+
!*.[Cc]ache/
190+
191+
# Others
192+
ClientBin/
193+
~$*
194+
*~
195+
*.dbmdl
196+
*.dbproj.schemaview
197+
*.jfm
198+
*.pfx
199+
*.publishsettings
200+
orleans.codegen.cs
201+
202+
# Including strong name files can present a security risk
203+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
204+
#*.snk
205+
206+
# Since there are multiple workflows, uncomment next line to ignore bower_components
207+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
208+
#bower_components/
209+
210+
# RIA/Silverlight projects
211+
Generated_Code/
212+
213+
# Backup & report files from converting an old project file
214+
# to a newer Visual Studio version. Backup files are not needed,
215+
# because we have git ;-)
216+
_UpgradeReport_Files/
217+
Backup*/
218+
UpgradeLog*.XML
219+
UpgradeLog*.htm
220+
CConvertLog*.txt
221+
222+
# SQL Server files
223+
*.mdf
224+
*.ldf
225+
*.ndf
226+
227+
# Business Intelligence projects
228+
*.rdl.data
229+
*.bim.layout
230+
*.bim_*.settings
231+
*.rptproj.rsuser
232+
*- Backup*.rdl
233+
234+
# Microsoft Fakes
235+
FakesAssemblies/
236+
237+
# GhostDoc plugin setting file
238+
*.GhostDoc.xml
239+
240+
# Node.js Tools for Visual Studio
241+
.ntvs_analysis.dat
242+
node_modules/
243+
244+
# Visual Studio 6 build log
245+
*.plg
246+
247+
# Visual Studio 6 workspace options file
248+
*.opt
249+
250+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
251+
*.vbw
252+
253+
# Visual Studio LightSwitch build output
254+
**/*.HTMLClient/GeneratedArtifacts
255+
**/*.DesktopClient/GeneratedArtifacts
256+
**/*.DesktopClient/ModelManifest.xml
257+
**/*.Server/GeneratedArtifacts
258+
**/*.Server/ModelManifest.xml
259+
_Pvt_Extensions
260+
261+
# Paket dependency manager
262+
.paket/paket.exe
263+
paket-files/
264+
265+
# FAKE - F# Make
266+
.fake/
267+
268+
# JetBrains Rider
269+
.idea/
270+
*.sln.iml
271+
272+
# CodeRush personal settings
273+
.cr/personal
274+
275+
# Python Tools for Visual Studio (PTVS)
276+
__pycache__/
277+
*.pyc
278+
279+
# Cake - Uncomment if you are using it
280+
# tools/**
281+
# !tools/packages.config
282+
283+
# Tabs Studio
284+
*.tss
285+
286+
# Telerik's JustMock configuration file
287+
*.jmconfig
288+
289+
# BizTalk build output
290+
*.btp.cs
291+
*.btm.cs
292+
*.odx.cs
293+
*.xsd.cs
294+
295+
# OpenCover UI analysis results
296+
OpenCover/
297+
298+
# Azure Stream Analytics local run output
299+
ASALocalRun/
300+
301+
# MSBuild Binary and Structured Log
302+
*.binlog
303+
304+
# NVidia Nsight GPU debugger configuration file
305+
*.nvuser
306+
307+
# MFractors (Xamarin productivity tool) working folder
308+
.mfractor/
309+
310+
# Local History for Visual Studio
311+
.localhistory/
312+
313+
# BeatPulse healthcheck temp database
314+
healthchecksdb
315+
316+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
317+
MigrationBackup/
318+
319+
# MacUtil GUI specific ignores
320+
MacUtilGUI/bin/
321+
MacUtilGUI/obj/
322+
MacUtilGUI/dist/
323+
MacUtilGUI/publish/
324+
325+
# macOS specific files
326+
.DS_Store
327+
.DS_Store?
328+
._*
329+
.Spotlight-V100
330+
.Trashes
331+
ehthumbs.db
332+
Thumbs.db

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build MacUtil GUI",
6+
"type": "shell",
7+
"command": "dotnet",
8+
"args": [
9+
"build"
10+
],
11+
"group": "build",
12+
"problemMatcher": [
13+
"$tsc"
14+
]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)