File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 57
57
run : msbuild .\StompboxUI.sln /t:StompboxPlugin /p:Configuration=Release
58
58
59
59
- name : Add Plugin Archive
60
- run : Compress-Archive -Path ${{github.workspace}}\StompboxPlugin\bin\Release\net8.0-windows\* -Destination StompboxVST3Plugin.zip
60
+ working-directory : ${{github.workspace}}
61
+ run : |
62
+ mkdir plugin-build
63
+ move StompboxPlugin\bin\Release\net8.0-windows plugin-build\StompboxPlugin
64
+ cp StompboxPlugin\README.txt plugin-build
65
+ Compress-Archive -Path plugin-build\* -Destination StompboxVST3Plugin.zip
61
66
62
67
- name : Upload Plugin Asset
63
68
uses : actions/upload-release-asset@v1
Original file line number Diff line number Diff line change
1
+ # Troubleshooting
2
+
3
+ ## Installing
4
+
5
+ Make sure that the ChartPlayer folder is installed where your DAW looks for VST3 plugins. Normally this is "** C:\Program Files\Common Files\VST3** ".
6
+
7
+ Also ensure that you have .NET 8.0 installed on your system. You can get it here:
8
+
9
+ https://dotnet.microsoft.com/en-us/download/dotnet/8.0
10
+
11
+ ## Stompbox Plugin Doesn't Scan in DAW
12
+
13
+ If your DAW isn't loading the plugin, first make sure that you had it re-scan plugins after installing .net 8.0
14
+
15
+ If you are still having trouble, please check for log files here:
16
+
17
+ "** %appdata%\AudioPlugSharp** "
18
+
19
+ Error messages here can help track down the problem.
20
+
21
+ ## Reporting Problems
22
+
23
+ If you are having trouble, please get in touch. The best way is through opening an issue or a discussion here on GitHub.
You can’t perform that action at this time.
0 commit comments