Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ indent_size = 2
[*.json]
indent_size = 2

# npm package files
[package.json]
indent_style = space
indent_size = 2
insert_final_newline = false
charset = utf-8

# Powershell files
[*.ps1]
indent_size = 2
Expand All @@ -38,6 +45,13 @@ indent_size = 2

# Dotnet code style settings:
[*.{cs,vb}]
dotnet_diagnostic.IDE0005.severity = suggestion
dotnet_diagnostic.IDE0007.severity = none
dotnet_diagnostic.IDE0008.severity = none
dotnet_diagnostic.IDE0011.severity = none

file_header_template = This Source Code Form is subject to the terms of the Mozilla Public\nLicense, v. 2.0. If a copy of the MPL was not distributed with this\nfile, You can obtain one at https://mozilla.org/MPL/2.0/.

# Sort using and Import directives with System.* appearing first and seperate groups
dotnet_sort_system_directives_first = true:error
dotnet_separate_import_directive_groups = true:suggestion
Expand Down Expand Up @@ -246,5 +260,5 @@ csharp_style_deconstructed_variable_declaration = true:suggestion
csharp_style_pattern_local_over_anonymous_function = true:error
csharp_using_directive_placement = outside_namespace:error
csharp_prefer_static_local_function = true:error
csharp_prefer_simple_using_statement = true:error
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_prefer_switch_expression = true:suggestion
63 changes: 0 additions & 63 deletions .gitattributes

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ _pkginfo.txt
ClientBin/
~$*
*~
!*~/
*.dbmdl
*.dbproj.schemaview
*.jfm
Expand Down Expand Up @@ -313,3 +314,6 @@ OpenCover/

# SpecFlow autogenerated feature code
*.feature.cs

# macOS
**/.DS_Store
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.github
.gitattributes
.gitmodules
.gitignore
.editorconfig
.DS_Store
MSBuild~
28 changes: 0 additions & 28 deletions BUILDING.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("DarkRift.Server.Testing")]
[assembly: DarkRift.Preserve]
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

// <auto-generated />
// Do not modify this file manually
// This file is is updated based on the version found on package.json
[assembly: System.Reflection.AssemblyVersion("2.10.1")]
18 changes: 18 additions & 0 deletions DarkRift.Client/DarkRift.Client.asmdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "DarkRift.Client",
"rootNamespace": "",
"references": [
"GUID:74b22b8f1e899468c828514608b766c6"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": false,
"defineConstraints": [
"!DARKRIFT_NO_CLIENT"
],
"versionDefines": [],
"noEngineReferences": true
}
29 changes: 0 additions & 29 deletions DarkRift.Schemas/Cluster.config.xsd

This file was deleted.

Loading