Skip to content

Commit

Permalink
Move to .NET 9, remove all traces of Unity
Browse files Browse the repository at this point in the history
  • Loading branch information
sowa705 committed Dec 7, 2024
1 parent d741912 commit 17eeb0b
Show file tree
Hide file tree
Showing 107 changed files with 2,445 additions and 8,134 deletions.
638 changes: 0 additions & 638 deletions .circleci/ProjectSettings/ProjectSettings.asset

This file was deleted.

97 changes: 0 additions & 97 deletions .circleci/config.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .circleci/scripts/prepare_unity.sh

This file was deleted.

49 changes: 0 additions & 49 deletions .circleci/scripts/run_unity_tests.sh

This file was deleted.

5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.csproj]
indent_size = 2
[*.props]
indent_size = 2

[*.md]
indent_style = space
indent_size = 2
Expand Down
31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/commit_message_check.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore -m:1

- name: Pack
run: dotnet pack --configuration Debug

- name: Push
run: dotnet nuget push src/**/*.nupkg --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json

23 changes: 0 additions & 23 deletions .github/workflows/release.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Common IntelliJ Platform excludes

# User specific
**/.idea/**/workspace.xml
**/.idea/**/tasks.xml
**/.idea/shelf/*
**/.idea/dictionaries
**/.idea/httpRequests/

# Sensitive or high-churn files
**/.idea/**/dataSources/
**/.idea/**/dataSources.ids
**/.idea/**/dataSources.xml
**/.idea/**/dataSources.local.xml
**/.idea/**/sqlDataSources.xml
**/.idea/**/dynamic.xml

# Rider
# Rider auto-generates .iml files, and contentModel.xml
**/.idea/**/*.iml
**/.idea/**/contentModel.xml
**/.idea/**/modules.xml

*.suo
*.user
.vs/
[Bb]in/
[Oo]bj/
_UpgradeReport_Files/
[Pp]ackages/

Thumbs.db
Desktop.ini
.DS_Store
13 changes: 13 additions & 0 deletions .idea/.idea.MeshSimplifier.dir/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 17eeb0b

Please sign in to comment.