mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-06-23 23:00:23 -07:00
Compare commits
4 Commits
94cf3a08bc
...
6f27e5166c
Author | SHA1 | Date | |
---|---|---|---|
|
6f27e5166c | ||
|
dbdd0e37d6 | ||
|
bfcd493a96 | ||
|
7afffd8172 |
2
.github/workflows/ci-debug.yml
vendored
2
.github/workflows/ci-debug.yml
vendored
@ -27,4 +27,4 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Bloxstrap (Debug) (${{ github.sha }})
|
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\*
|
2
.github/workflows/ci-release.yml
vendored
2
.github/workflows/ci-release.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Bloxstrap (Release) (${{ github.sha }})
|
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:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<TargetFramework>net6.0-windows</TargetFramework>
|
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<UseWindowsForms>True</UseWindowsForms>
|
<UseWindowsForms>True</UseWindowsForms>
|
||||||
|
@ -1525,7 +1525,7 @@ namespace Bloxstrap
|
|||||||
var regexList = new List<string>();
|
var regexList = new List<string>();
|
||||||
|
|
||||||
foreach (string file in files)
|
foreach (string file in files)
|
||||||
regexList.Add("^" + file.Replace("\\", "\\\\") + "$");
|
regexList.Add("^" + file.Replace("\\", "\\\\").Replace("(", "\\(").Replace(")", "\\)") + "$");
|
||||||
|
|
||||||
fileFilter = String.Join(';', regexList);
|
fileFilter = String.Join(';', regexList);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user