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 35c7e51Copy full SHA for 35c7e51
.github/workflows/b2s-backglass.yml
@@ -25,6 +25,11 @@ 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
+ run: |
31
+ $csproj = "B2SServerPluginInterface/B2SServerPluginInterface/B2SServerPluginInterface.csproj"
32
+ (Get-Content $csproj) -replace '<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>', '<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>' | Set-Content $csproj
33
- id: version
34
name: Update AssemblyInformationalVersion
35
run: |
0 commit comments