Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
mntone committed Jan 11, 2023
0 parents commit 131cbc8
Show file tree
Hide file tree
Showing 67 changed files with 4,987 additions and 0 deletions.
95 changes: 95 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
root = true

[*]
end_of_line = lf

[*.{def,rc,idl}]
indent_style = tab
indent_size = 4
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[*.{cpp,h,hpp,inl}]
indent_style = tab
indent_size = 4
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

cpp_indent_braces = false
cpp_indent_multi_line_relative_to = innermost_parenthesis
cpp_indent_within_parentheses = indent
cpp_indent_preserve_within_parentheses = true
cpp_indent_case_contents = true
cpp_indent_case_labels = false
cpp_indent_case_contents_when_block = false
cpp_indent_lambda_braces_when_parameter = false
cpp_indent_goto_labels = one_left
cpp_indent_preprocessor = leftmost_column
cpp_indent_access_specifiers = false
cpp_indent_namespace_contents = true
cpp_indent_preserve_comments = false
cpp_new_line_before_open_brace_namespace = same_line
cpp_new_line_before_open_brace_type = same_line
cpp_new_line_before_open_brace_function = same_line
cpp_new_line_before_open_brace_block = same_line
cpp_new_line_before_open_brace_lambda = same_line
cpp_new_line_scope_braces_on_separate_lines = true
cpp_new_line_close_brace_same_line_empty_type = true
cpp_new_line_close_brace_same_line_empty_function = true
cpp_new_line_before_catch = false
cpp_new_line_before_else = false
cpp_new_line_before_while_in_do_while = false
cpp_space_before_function_open_parenthesis = remove
cpp_space_within_parameter_list_parentheses = false
cpp_space_between_empty_parameter_list_parentheses = false
cpp_space_after_keywords_in_control_flow_statements = true
cpp_space_within_control_flow_statement_parentheses = false
cpp_space_before_lambda_open_parenthesis = false
cpp_space_within_cast_parentheses = false
cpp_space_after_cast_close_parenthesis = false
cpp_space_within_expression_parentheses = false
cpp_space_before_block_open_brace = true
cpp_space_between_empty_braces = true
cpp_space_before_initializer_list_open_brace = true
cpp_space_within_initializer_list_braces = true
cpp_space_preserve_in_initializer_list = true
cpp_space_before_open_square_bracket = false
cpp_space_within_square_brackets = false
cpp_space_before_empty_square_brackets = false
cpp_space_between_empty_square_brackets = false
cpp_space_group_square_brackets = true
cpp_space_within_lambda_brackets = false
cpp_space_between_empty_lambda_brackets = false
cpp_space_before_comma = false
cpp_space_after_comma = true
cpp_space_remove_around_member_operators = true
cpp_space_before_inheritance_colon = false
cpp_space_before_constructor_colon = false
cpp_space_remove_before_semicolon = true
cpp_space_after_semicolon = true
cpp_space_remove_around_unary_operator = true
cpp_space_around_binary_operator = insert
cpp_space_around_assignment_operator = insert
cpp_space_pointer_reference_alignment = left
cpp_space_around_ternary_operator = insert
cpp_wrap_preserve_blocks = one_liners

[*.resw]
charset = utf-8-bom
end_of_line = crlf

[*.xaml]
charset = utf-8
end_of_line = crlf
insert_final_newline = true
trim_trailing_whitespace = true

[*.sln]
charset = utf-8-bom
end_of_line = crlf

[*.{vcxproj,vcxproj.filters,wapproj,wapproj.user}]
charset = utf-8
end_of_line = crlf
26 changes: 26 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Files which are explicitly binary
*.gif binary filter=lfs diff=lfs merge=lfs !eol
*.jpg binary filter=lfs diff=lfs merge=lfs !eol
*.png binary filter=lfs diff=lfs merge=lfs !eol

# Files normalized to always keep Unix line endings
.editorconfig text encoding=utf-8 eol=lf
.gitattributes text encoding=utf-8 eol=lf
.gitignore text encoding=utf-8 eol=lf
*.txt text encoding=utf-8 eol=lf
*.md text encoding=utf-8 eol=lf
*.def text encoding=utf-8 eol=lf
*.rc text encoding=utf-8 eol=lf
*.idl text encoding=utf-8 eol=lf
*.[ch] text encoding=utf-8 eol=lf
*.[ch]pp text encoding=utf-8 eol=lf
app.manifest text encoding=utf-8 eol=lf

# Files normalized to always keep Windows line endings
*.resw text encoding=utf-8-bom eol=crlf
*.xaml text encoding=utf-8 eol=crlf
*.sln text encoding=utf-8-bom eol=crlf
*.vcxproj text encoding=utf-8 eol=crlf
*.vcxproj.filters text encoding=utf-8-bom eol=crlf
packages.config text encoding=utf-8-bom eol=crlf
Package.appxmanifest text encoding=utf-8-bom eol=lf
151 changes: 151 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/

# Visual Studio 2015/2017 cache/options directory
.vs/

# Visual Studio 2017 auto generated files
Generated\ Files/

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# StyleCop
StyleCopReport.xml

# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# Visual Studio Trace Files
*.e2e

# Visual Studio code coverage results
*.coverage
*.coveragexml

# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs

# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

# MSBuild Binary and Structured Log
*.binlog

# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/
57 changes: 57 additions & 0 deletions AngelUmbrella.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33205.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AngelUmbrella.Samples", "samples\AngelUmbrella.Samples.vcxproj", "{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AngelUmbrella", "src\AngelUmbrella.vcxproj", "{7DEE9635-B417-49F9-A823-05DC99C0B4BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|ARM64.ActiveCfg = Debug|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|ARM64.Build.0 = Debug|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|ARM64.Deploy.0 = Debug|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x64.ActiveCfg = Debug|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x64.Build.0 = Debug|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x64.Deploy.0 = Debug|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x86.ActiveCfg = Debug|Win32
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x86.Build.0 = Debug|Win32
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Debug|x86.Deploy.0 = Debug|Win32
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|ARM64.ActiveCfg = Release|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|ARM64.Build.0 = Release|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|ARM64.Deploy.0 = Release|ARM64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x64.ActiveCfg = Release|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x64.Build.0 = Release|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x64.Deploy.0 = Release|x64
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x86.ActiveCfg = Release|Win32
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x86.Build.0 = Release|Win32
{8C972921-8910-43FA-BCFE-C5D4B0C53FFD}.Release|x86.Deploy.0 = Release|Win32
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|ARM64.ActiveCfg = Debug|ARM64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|ARM64.Build.0 = Debug|ARM64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|x64.ActiveCfg = Debug|x64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|x64.Build.0 = Debug|x64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|x86.ActiveCfg = Debug|Win32
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Debug|x86.Build.0 = Debug|Win32
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|ARM64.ActiveCfg = Release|ARM64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|ARM64.Build.0 = Release|ARM64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|x64.ActiveCfg = Release|x64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|x64.Build.0 = Release|x64
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|x86.ActiveCfg = Release|Win32
{7DEE9635-B417-49F9-A823-05DC99C0B4BA}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F9C24B7F-0822-4193-A56B-175D94E47DAE}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 131cbc8

Please sign in to comment.