-
Notifications
You must be signed in to change notification settings - Fork 413
Initial commit of Reunion Common Entrypoint #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,126 @@ | ||
| root = true | ||
|
|
||
| # Rules in this file were initially inferred by Visual Studio IntelliCode from the S:\Repos\dep.controls codebase based on best match to current usage at 11/15/2018 | ||
| # You can modify the rules from these initially generated values to suit your own policies | ||
| # You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference | ||
| [*.cs] | ||
|
|
||
| #Core editorconfig formatting - indentation | ||
|
|
||
| #use soft tabs (spaces) for indentation | ||
| indent_style = space | ||
| indent_size = 4 | ||
| charset = utf-8-bom | ||
| end_of_line = crlf | ||
|
|
||
| #Formatting - indentation options | ||
|
|
||
| #indent switch case contents. | ||
| csharp_indent_case_contents = true | ||
| #csharp_indent_case_contents_when_block | ||
| csharp_indent_case_contents_when_block = true | ||
| #indent switch labels | ||
| csharp_indent_switch_labels = true | ||
|
|
||
| #Formatting - new line options | ||
|
|
||
| #place catch statements on a new line | ||
| csharp_new_line_before_catch = true | ||
| #place else statements on a new line | ||
| csharp_new_line_before_else = true | ||
| #require braces to be on a new line for accessors, methods, object_collection, control_blocks, types, properties, and lambdas (also known as "Allman" style) | ||
| csharp_new_line_before_open_brace = accessors, methods, object_collection, control_blocks, types, properties, lambdas | ||
|
|
||
| #Formatting - organize using options | ||
|
|
||
| #do not place System.* using directives before other using directives | ||
| dotnet_sort_system_directives_first = false | ||
|
|
||
| #Formatting - spacing options | ||
|
|
||
| #require NO space between a cast and the value | ||
| csharp_space_after_cast = false | ||
| #require a space before the colon for bases or interfaces in a type declaration | ||
| csharp_space_after_colon_in_inheritance_clause = true | ||
| #require a space after a keyword in a control flow statement such as a for loop | ||
| csharp_space_after_keywords_in_control_flow_statements = true | ||
| #require a space before the colon for bases or interfaces in a type declaration | ||
| csharp_space_before_colon_in_inheritance_clause = true | ||
| #remove space within empty argument list parentheses | ||
| csharp_space_between_method_call_empty_parameter_list_parentheses = false | ||
| #remove space between method call name and opening parenthesis | ||
| csharp_space_between_method_call_name_and_opening_parenthesis = false | ||
| #do not place space characters after the opening parenthesis and before the closing parenthesis of a method call | ||
| csharp_space_between_method_call_parameter_list_parentheses = false | ||
| #remove space within empty parameter list parentheses for a method declaration | ||
| csharp_space_between_method_declaration_empty_parameter_list_parentheses = false | ||
| #place a space character after the opening parenthesis and before the closing parenthesis of a method declaration parameter list. | ||
| csharp_space_between_method_declaration_parameter_list_parentheses = false | ||
|
|
||
| #Formatting - wrapping options | ||
|
|
||
| #leave code block on single line | ||
| csharp_preserve_single_line_blocks = true | ||
| #leave statements and member declarations on the same line | ||
| csharp_preserve_single_line_statements = true | ||
|
|
||
| #Style - expression bodied member options | ||
|
|
||
| #prefer block bodies for accessors | ||
| csharp_style_expression_bodied_accessors = false:suggestion | ||
| #prefer block bodies for constructors | ||
| csharp_style_expression_bodied_constructors = false:suggestion | ||
| #prefer block bodies for methods | ||
| csharp_style_expression_bodied_methods = false:suggestion | ||
| #prefer block bodies for properties | ||
| csharp_style_expression_bodied_properties = false:suggestion | ||
|
|
||
| #Style - expression level options | ||
|
|
||
| #prefer out variables to be declared before the method call | ||
| csharp_style_inlined_variable_declaration = false:suggestion | ||
| #prefer the language keyword for member access expressions, instead of the type name, for types that have a keyword to represent them | ||
| dotnet_style_predefined_type_for_member_access = true:suggestion | ||
|
|
||
| #Style - implicit and explicit types | ||
|
|
||
| #prefer explicit type over var to declare variables with built-in system types such as int | ||
| csharp_style_var_for_built_in_types = false:none | ||
| #prefer explicit type over var when the type is already mentioned on the right-hand side of a declaration | ||
| csharp_style_var_when_type_is_apparent = false:none | ||
|
|
||
| #Style - language keyword and framework type options | ||
|
|
||
| #prefer the language keyword for local variables, method parameters, and class members, instead of the type name, for types that have a keyword to represent them | ||
| dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion | ||
|
|
||
| #Style - qualification options | ||
|
|
||
| #prefer events not to be prefaced with this. or Me. in Visual Basic | ||
| dotnet_style_qualification_for_event = false:suggestion | ||
| #prefer fields not to be prefaced with this. or Me. in Visual Basic | ||
| dotnet_style_qualification_for_field = false:suggestion | ||
| #prefer methods not to be prefaced with this. or Me. in Visual Basic | ||
| dotnet_style_qualification_for_method = false:suggestion | ||
| #prefer properties not to be prefaced with this. or Me. in Visual Basic | ||
| dotnet_style_qualification_for_property = false:suggestion | ||
|
|
||
| # IDE0008: Use explicit type | ||
| csharp_style_var_elsewhere = false:none | ||
|
|
||
| [**.{cpp,h,idl}] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| charset = utf-8-bom | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
| end_of_line = crlf | ||
|
|
||
|
|
||
| [**.{xaml,xml}] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| charset = utf-8-bom | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
| end_of_line = crlf |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| * text=auto | ||
|
|
||
| # Force specific files that git doesn't know should always be CRLF | ||
| *.idl text eol=crlf | ||
| *.h text eol=crlf | ||
| *.cpp text eol=crlf | ||
| *.sln text eol=crlf | ||
| *.props text eol=crlf | ||
| *.targets text eol=crlf | ||
| *proj text eol=crlf | ||
| *.cmd text eol=crlf | ||
| *.ps1 text eol=crlf |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,253 @@ | ||
| ## Ignore Visual Studio temporary files, build results, and | ||
| ## files generated by popular Visual Studio add-ons. | ||
|
|
||
| # User-specific files | ||
| *.suo | ||
| *.user | ||
| *.userosscache | ||
| *.sln.docstates | ||
|
|
||
| # User-specific files (MonoDevelop/Xamarin Studio) | ||
| *.userprefs | ||
|
|
||
| # Build results | ||
| [Dd]ebug/ | ||
| [Dd]ebugPublic/ | ||
| [Rr]elease/ | ||
| [Rr]eleases/ | ||
| bld/ | ||
| [Bb]in/ | ||
| [Oo]bj/ | ||
| [Bb]uild[Oo]utput/ | ||
| [Bb]undle[Aa]rtifacts/ | ||
|
|
||
| # Visual Studio 2015 cache/options directory | ||
| .vs/ | ||
|
|
||
| # Visual Studio Code cache/options directory | ||
| .vscode/.BROWSE* | ||
|
|
||
| # MSTest test Results | ||
| [Tt]est[Rr]esult*/ | ||
| [Bb]uild[Ll]og.* | ||
|
|
||
| # NUNIT | ||
| *.VisualState.xml | ||
| TestResult.xml | ||
|
|
||
| # Build Results of an ATL Project | ||
| [Dd]ebugPS/ | ||
| [Rr]eleasePS/ | ||
| dlldata.c | ||
|
|
||
| # DNX | ||
| project.lock.json | ||
| artifacts/ | ||
|
|
||
| *_i.c | ||
| *_p.c | ||
| *_i.h | ||
| *.ilk | ||
| *.meta | ||
| *.obj | ||
| *.pch | ||
| *.pdb | ||
| *.pgc | ||
| *.pgd | ||
| *.rsp | ||
| *.sbr | ||
| *.tlb | ||
| *.tli | ||
| *.tlh | ||
| *.tmp | ||
| *.tmp_proj | ||
| *.log | ||
| *.vspscc | ||
| *.vssscc | ||
| .builds | ||
| *.pidb | ||
| *.svclog | ||
| *.scc | ||
| *.run | ||
| *.out | ||
| *.run.code | ||
| *.tl | ||
| pingme.txt | ||
| *.binlog | ||
|
|
||
| # Chutzpah Test files | ||
| _Chutzpah* | ||
|
|
||
| # Visual C++ cache files | ||
| ipch/ | ||
| *.aps | ||
| *.ncb | ||
| *.opensdf | ||
| *.sdf | ||
| *.cachefile | ||
|
|
||
| # Visual Studio profiler | ||
| *.psess | ||
| *.vsp | ||
| *.vspx | ||
|
|
||
| # TFS 2012 Local Workspace | ||
| $tf/ | ||
|
|
||
| # Guidance Automation Toolkit | ||
| *.gpState | ||
|
|
||
| # ReSharper is a .NET coding add-in | ||
| _ReSharper*/ | ||
| *.[Rr]e[Ss]harper | ||
| *.DotSettings.user | ||
|
|
||
| # JustCode is a .NET coding add-in | ||
| .JustCode | ||
|
|
||
| # TeamCity is a build add-in | ||
| _TeamCity* | ||
|
|
||
| # DotCover is a Code Coverage Tool | ||
| *.dotCover | ||
|
|
||
| # NCrunch | ||
| _NCrunch_* | ||
| .*crunch*.local.xml | ||
|
|
||
| # MightyMoose | ||
| *.mm.* | ||
| AutoTest.Net/ | ||
|
|
||
| # Web workbench (sass) | ||
| .sass-cache/ | ||
|
|
||
| # Installshield output folder | ||
| [Ee]xpress/ | ||
|
|
||
| # DocProject is a documentation generator add-in | ||
| DocProject/buildhelp/ | ||
| DocProject/Help/*.HxT | ||
| DocProject/Help/*.HxC | ||
| DocProject/Help/*.hhc | ||
| DocProject/Help/*.hhk | ||
| DocProject/Help/*.hhp | ||
| DocProject/Help/Html2 | ||
| DocProject/Help/html | ||
|
|
||
| # Click-Once directory | ||
| publish/ | ||
|
|
||
| # Publish Web Output | ||
| *.[Pp]ublish.xml | ||
| *.azurePubxml | ||
| ## TODO: Comment the next line if you want to checkin your | ||
| ## web deploy settings but do note that will include unencrypted | ||
| ## passwords | ||
| #*.pubxml | ||
|
|
||
| *.publishproj | ||
|
|
||
| # NuGet Packages | ||
| *.nupkg | ||
| # The packages folder can be ignored because of Package Restore | ||
| **/packages/* | ||
| # except build/, which is used as an MSBuild target. | ||
| !**/packages/build/ | ||
| # Uncomment if necessary however generally it will be regenerated when needed | ||
| #!**/packages/repositories.config | ||
| *.nuget.props | ||
| *.nuget.targets | ||
|
|
||
| # Windows Azure Build Output | ||
| csx/ | ||
| *.build.csdef | ||
|
|
||
| # Windows Store app package directory | ||
| AppPackages/ | ||
|
|
||
| # 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/ | ||
| [Ss]tyle[Cc]op.* | ||
| ~$* | ||
| *~ | ||
| *.dbmdl | ||
| *.dbproj.schemaview | ||
| *.publishsettings | ||
| node_modules/ | ||
| orleans.codegen.cs | ||
|
|
||
| # RIA/Silverlight projects | ||
| Generated_Code/ | ||
|
|
||
| # Backup & report files from converting an old project file | ||
| # to a newer Visual Studio version. Backup files are not needed, | ||
| # because we have git ;-) | ||
| _UpgradeReport_Files/ | ||
| Backup*/ | ||
| UpgradeLog*.XML | ||
| UpgradeLog*.htm | ||
|
|
||
| # SQL Server files | ||
| *.mdf | ||
| *.ldf | ||
|
|
||
| # Business Intelligence projects | ||
| *.rdl.data | ||
| *.bim.layout | ||
| *.bim_*.settings | ||
|
|
||
| # Microsoft Fakes | ||
| FakesAssemblies/ | ||
|
|
||
| # Node.js Tools for Visual Studio | ||
| .ntvs_analysis.dat | ||
|
|
||
| # Visual Studio 6 build log | ||
| *.plg | ||
|
|
||
| # Visual Studio 6 workspace options file | ||
| *.opt | ||
|
|
||
| # LightSwitch generated files | ||
| GeneratedArtifacts/ | ||
| _Pvt_Extensions/ | ||
| ModelManifest.xml | ||
|
|
||
| # Other files to ignore | ||
| *.zip | ||
| *.bundle | ||
| *.appx | ||
| *.appxbundle | ||
|
|
||
| *.dll | ||
| *.exe | ||
| AppPackages/ | ||
| *.winmd | ||
| *.pri | ||
| *.vsix | ||
| *.db | ||
|
|
||
| # VCX project things | ||
| *.VC.opendb | ||
| *.VC.db | ||
|
|
||
| Generated Files/ | ||
|
|
||
| !TrexDefs/* | ||
|
|
||
| # Localization sources dynamically downloaded from the Reach localization platform | ||
| build/Localization/LocRepo/**/*.lcl | ||
|
|
||
| # Local code coverage run output | ||
| CodeCoverageOutput/ | ||
|
|
||
| # Dump files | ||
| [Dd]ump[Ff]iles/ | ||
| *.dmp | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a fan of the kitchen sink
.gitignorethat Visual Studio generates. I'd rather be deliberate about what I ignore.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of this is probably unneeded if you also pick up the directory.props and other root configurations that make sure all the VS generated goop is in the root "BuildOutput" folder. VS generates quite a lot of nonsense into the source tree if you aren't careful though and I feel this is safer than folks accidentally blowing up the remote git repo with binary blobs that are never meant to be checked in.