Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 704f8c6

Browse files
committed
new update
0 parents  commit 704f8c6

File tree

1,081 files changed

+45230
-0
lines changed

Some content is hidden

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

1,081 files changed

+45230
-0
lines changed

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*.{cs,vb}]
2+
3+
# IDE0047: Remove unnecessary parentheses
4+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
5+
6+
# IDE0058: Expression value is never used
7+
csharp_style_unused_value_expression_statement_preference = unused_local_variable

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: theotherroles

.github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Bug Report]"
5+
labels: "\U0001F974 bug"
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**System (please complete the following information):**
27+
- OS: [e.g. Windows 11]
28+
- Among Us Version [e.g. v2021.11.15s]
29+
- TheOtherRoles Version [e.g. v3.3.3]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for the mod
4+
title: "[Suggestion]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution / role you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/build.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: AutoBuild .NET
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-20.04
11+
12+
steps:
13+
- uses: actions/cache@v2
14+
with:
15+
path: |
16+
~/.nuget/packages
17+
~/.cache/bepinex
18+
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
19+
restore-keys: |
20+
${{ runner.os }}-nuget-
21+
22+
- uses: actions/checkout@v2
23+
with:
24+
submodules: true
25+
26+
- name: Setup .NET
27+
uses: actions/setup-dotnet@v1
28+
with:
29+
dotnet-version: 6.x
30+
31+
- name: Build
32+
run: dotnet build TheOtherRoles/TheOtherRoles.csproj --configuration Release
33+
34+
- name: Upload TheOtherRoles
35+
uses: actions/upload-artifact@v2
36+
with:
37+
name: TheOtherRoles.dll
38+
path: TheOtherRoles/bin/Release/net6.0/TheOtherRoles.dll
39+

0 commit comments

Comments
 (0)