Compare commits

...

4 Commits

Author SHA1 Message Date
Bugadinho
6f27e5166c
Merge bfcd493a96 into dbdd0e37d6 2025-03-30 01:08:08 +08:00
Matt
dbdd0e37d6
Cancel parenthesis in ExtractZip regex (#4968)
Some checks failed
CI (Debug) / build (push) Has been cancelled
CI (Release) / build (push) Has been cancelled
CI (Release) / release (push) Has been cancelled
CI (Release) / release-test (push) Has been cancelled
2025-03-29 09:00:02 +00:00
Bugadinho
bfcd493a96
Adjust build paths to accomodate changed target framework 2025-01-06 21:40:08 -03:00
Bugadinho
7afffd8172
Use a WinRT compatible TargetFramework 2025-01-06 21:39:45 -03:00
4 changed files with 4 additions and 4 deletions

View File

@ -27,4 +27,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Bloxstrap (Debug) (${{ github.sha }})
path: .\Bloxstrap\bin\Debug\net6.0-windows\win-x64\publish\*
path: .\Bloxstrap\bin\Debug\net6.0-windows10.0.17763.0\win-x64\publish\*

View File

@ -31,7 +31,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Bloxstrap (Release) (${{ github.sha }})
path: .\Bloxstrap\bin\Release\net6.0-windows\win-x64\publish\*
path: .\Bloxstrap\bin\Release\net6.0-windows10.0.17763.0\win-x64\publish\*
release:
needs: build

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>True</UseWindowsForms>

View File

@ -1525,7 +1525,7 @@ namespace Bloxstrap
var regexList = new List<string>();
foreach (string file in files)
regexList.Add("^" + file.Replace("\\", "\\\\") + "$");
regexList.Add("^" + file.Replace("\\", "\\\\").Replace("(", "\\(").Replace(")", "\\)") + "$");
fileFilter = String.Join(';', regexList);
}