Disable strong name validation

This commit is contained in:
Ben C 2022-05-22 22:33:20 -04:00
parent b564e384f0
commit f95c4ebec8
2 changed files with 12 additions and 1 deletions

View File

@ -44,12 +44,13 @@ jobs:
name: NewHorizons-${{ env.BUILD_TYPE }}
path: .\NewHorizons\Obj\${{ env.BUILD_TYPE }}
# Debugging, remove later
- run: tree /f
- name: Generate Schemas
run: .\SchemaExporter\Bin\${{ env.BUILD_TYPE }}\SchemaExporter.exe
# Only want to commit schemas if they've actually changed
# Only want to commit schemas if they've actually changed
- name: Verify Changed Schemas
uses: tj-actions/verify-changed-files@v6
id: changed_files

10
SchemaExporter/App.config Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
<runtime>
<bypassTrustedAppStrongNames enabled="true"/>
</runtime>
</configuration>