Skip to content

Commit 28d8d83

Browse files
authored
Merge pull request #36 from cmbsolutions/develop
Fixed issue #35
2 parents e28ef23 + e784b45 commit 28d8d83

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/CI_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release'
3737
uses: actions/upload-artifact@v4
3838
with:
39-
name: nppRandomStringGenerator.1.9.0.x64
39+
name: nppRandomStringGenerator.1.9.1.x64
4040
path: nppRandomStringGenerator\bin\${{ matrix.build_configuration }}-x64\nppRandomStringGenerator.dll
4141

4242
- name: Archive artifacts for x86
4343
if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release'
4444
uses: actions/upload-artifact@v4
4545
with:
46-
name: nppRandomStringGenerator.1.9.0.x86
46+
name: nppRandomStringGenerator.1.9.1.x86
4747
path: nppRandomStringGenerator\bin\${{ matrix.build_configuration }}\nppRandomStringGenerator.dll
4848

nppRandomStringGenerator/Modules/StringGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void GenerateStrings()
8282
internalWorkload += MissingWorkload;
8383
}
8484

85-
Random rnd = new Random();
85+
Random rnd = new Random(i);
8686

8787
for (int w = 0; w < internalWorkload; w++)
8888
{

nppRandomStringGenerator/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.9.0")]
36-
[assembly: AssemblyFileVersion("1.9.0")]
35+
[assembly: AssemblyVersion("1.9.1")]
36+
[assembly: AssemblyFileVersion("1.9.1")]

0 commit comments

Comments
 (0)