Skip to content

Commit 302af44

Browse files
committed
Initial commit
1 parent 51b52e9 commit 302af44

File tree

256 files changed

+13781
-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.

256 files changed

+13781
-0
lines changed

.github/FUNDING.yml

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

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "nuget"
4+
directory: "/RDMSharp/"
5+
schedule:
6+
interval: "daily"
7+
open-pull-requests-limit: 5

.github/workflows/main.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Setup .NET Core
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: '6.0.x'
21+
- name: Install dependencies
22+
run: dotnet restore
23+
- name: Build
24+
run: dotnet build --configuration Release --no-restore
25+
- name: Upload a Build Artifact
26+
uses: actions/[email protected]
27+
with:
28+
path: NanoleafAPI/bin/Release/net6.0/RDMSharp.dll

.github/workflows/release.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish Packages to nuget
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core
14+
uses: actions/setup-dotnet@v1
15+
with:
16+
dotnet-version: '6.0.x'
17+
- name: Install dependencies
18+
run: dotnet restore
19+
- name: Build
20+
run: dotnet build --configuration Release --no-restore
21+
- name: Upload a Build Artifact
22+
uses: actions/[email protected]
23+
with:
24+
path: RDMSharp/bin/Release/net6.0/RDMSharp.dll
25+
- name: Publish RDMSharp
26+
uses: brandedoutcast/[email protected]
27+
with:
28+
PROJECT_FILE_PATH: RDMSharp/RDMSharp.csproj
29+
NUGET_KEY: ${{secrets.NUGET_KEY}}
30+
PACKAGE_NAME: RDMSharp

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -396,3 +396,6 @@ FodyWeavers.xsd
396396

397397
# JetBrains Rider
398398
*.sln.iml
399+
400+
# Notepad++
401+
*.bak

RDMSharp.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.7.34024.191
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RDMSharp", "RDMSharp\RDMSharp.csproj", "{E855979F-2414-45F3-9A3E-513B7F1F1598}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{E855979F-2414-45F3-9A3E-513B7F1F1598}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{E855979F-2414-45F3-9A3E-513B7F1F1598}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{E855979F-2414-45F3-9A3E-513B7F1F1598}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{E855979F-2414-45F3-9A3E-513B7F1F1598}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {4294296C-A5C2-4DB7-AF82-548B7EB16CE9}
24+
EndGlobalSection
25+
EndGlobal

RDMSharp/Icons/RDMSharp.ico

162 KB
Binary file not shown.

RDMSharp/Icons/RDMSharp.png

14.8 KB
Loading

0 commit comments

Comments
 (0)