We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a941c commit 73fa0b2Copy full SHA for 73fa0b2
.github/workflows/b2s-backglass.yml
@@ -25,6 +25,12 @@ jobs:
25
with:
26
repository: DirectOutput/B2SServerPluginInterface
27
path: B2SServerPluginInterface
28
+# Since the file is in the DirectOutput repository, we try to patch it here
29
+ - name: Patch B2SServerPluginInterface.csproj to use .NET Framework 4.8
30
+ shell: pwsh
31
+ run: |
32
+ $csproj = "B2SServerPluginInterface/B2SServerPluginInterface/B2SServerPluginInterface.csproj"
33
+ (Get-Content $csproj) -replace '<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>', '<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>' | Set-Content $csproj
34
- id: version
35
name: Update AssemblyInformationalVersion
36
run: |
0 commit comments