Compare commits
4 Commits
377f440c46
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 6133df6cfb | |||
| 7a7db6adb2 | |||
| 99456cc383 | |||
| aef927763c |
30
.gitea/workflows/Action.yaml
Normal file
30
.gitea/workflows/Action.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
name: build dll
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup NuGet
|
||||
uses: NuGet/setup-nuget@v1.1.1
|
||||
|
||||
- name: Restore NuGet packages
|
||||
run: nuget restore psycastDontNeedPsyfocus.sln
|
||||
|
||||
- name: Build with MSBuild
|
||||
run: msbuild psycastDontNeedPsyfocus.csproj /p:Configuration=Release
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mod-dll
|
||||
path: bin\Release\psycastDontNeedPsyfocus.dll
|
||||
@@ -40,7 +40,7 @@ namespace psycastDontNeedPsyfocus
|
||||
|
||||
public static void Postfix_VPE(ref float __result)
|
||||
{
|
||||
Log.Message("qweqwwqe");
|
||||
//Log.Message("qweqwwqe");
|
||||
__result = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user