Skip to content

Commit 598366e

Browse files
committed
Initial
1 parent d95ace4 commit 598366e

34 files changed

+43883
-0
lines changed

.gitignore

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
bin/
2+
obj/
3+
project.lock.json
4+
*-tests.xml
5+
/debug/
6+
/staging/
7+
/Packages/
8+
*.nuget.props
9+
10+
# dotnet cli install/uninstall scripts
11+
dotnet-install.ps1
12+
dotnet-install.sh
13+
dotnet-uninstall-pkgs.sh
14+
dotnet-uninstall-debian-packages.sh
15+
16+
# VS auto-generated solution files for project.json solutions
17+
*.xproj
18+
*.xproj.user
19+
*.suo
20+
21+
# VS auto-generated files for csproj files
22+
*.csproj.user
23+
24+
# Visual Studio IDE directory
25+
.vs/
26+
27+
# VSCode directories that are not at the repository root
28+
/**/.vscode/
29+
30+
# Project Rider IDE files
31+
.idea.powershell/
32+
33+
# Ignore executables
34+
*.exe
35+
*.msi
36+
*.appx
37+
38+
# Ignore binaries and symbols
39+
*.pdb
40+
*.dll
41+
*.wixpdb
42+
43+
# Ignore packages
44+
*.deb
45+
*.tar.gz
46+
*.zip
47+
*.rpm
48+
*.pkg
49+
*.nupkg
50+
*.AppImage
51+
52+
# default location for produced nuget packages
53+
/nuget-artifacts
54+
55+
# resgen output
56+
gen
57+
58+
# Per repo profile
59+
.profile.ps1
60+
61+
# macOS
62+
.DS_Store
63+
64+
# TestsResults
65+
TestsResults*.xml
66+
67+
# Resharper settings
68+
PowerShell.sln.DotSettings.user
69+
*.msp
70+
StyleCop.Cache
71+
72+
# GitKracken Files
73+
.gk/
74+
gkconfig.yml

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
11
# SCF
22
Unicode Simple Case Folding (WIP)
3+
4+
5+
To run xUnit tests:
6+
7+
```
8+
cd SCF\tests\xUnit\
9+
dotnet test -c Release
10+
```
11+
12+
To run performance tests:
13+
```
14+
cd SCF\tests\Benchmarks\
15+
dotnet run -c Release
16+
```

0 commit comments

Comments
 (0)