Skip to content

Commit

Permalink
chore(net): introduce initial solution for .NET (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisInSky authored Oct 21, 2024
1 parent 329b8c3 commit 9b8a7f0
Show file tree
Hide file tree
Showing 6 changed files with 553 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
pull_request:
types: [opened, synchronize, reopened, labeled]
branches: [master]
paths-ignore:
- 'net/**'
- 'Sails.Net.sln'
push:
branches: [master]
paths:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ name: CI (Rust)
on:
push:
branches: [ master ]
paths-ignore:
- 'net/**'
- 'Sails.Net.sln'
pull_request:
paths-ignore:
- 'net/**'
- 'Sails.Net.sln'

env:
BINARYEN_VERSION: version_111
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
.binpath
.DS_Store
.vs
.vscode
*.log

# Rust
target/

# C#
net/**/[Bb]in/
net/**/[Oo]bj/

# js
node_modules/
js/**/lib/
Expand Down
25 changes: 25 additions & 0 deletions Sails.Net.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35327.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sails.Net", "net\src\Sails.Net\Sails.Net.csproj", "{92AA0FB6-FBEB-4AB1-9541-034C3A267B5E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{92AA0FB6-FBEB-4AB1-9541-034C3A267B5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{92AA0FB6-FBEB-4AB1-9541-034C3A267B5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{92AA0FB6-FBEB-4AB1-9541-034C3A267B5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{92AA0FB6-FBEB-4AB1-9541-034C3A267B5E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0894C08B-8BB9-401D-8471-26F5EB5A4EA2}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 9b8a7f0

Please sign in to comment.