File tree 7 files changed +62
-11
lines changed
BulkRename.IntegrationTests
7 files changed +62
-11
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Bug report
3
+ about : Create a report to help us improve
4
+ title : " Short description of issue"
5
+ labels : bug
6
+ assignees : ' '
7
+ ---
8
+
9
+ ** Description:** Full description of issue here
10
+
11
+ ** Expected behavior:** Screenshots and/or description of expected behavior
12
+
13
+ ** OS:** OS on which the bug was encountered [ e.g. linux x86_64 QTS 5.1.8 (20240712)]
14
+
15
+ ** Docker version:** Docker version [ e.g. 27.1.1]
16
+
17
+ ** Total CPU:** Total available CPU
18
+
19
+ ** Total RAM:** Total available RAM
20
+
21
+ ** Application version:** Application version you are using [ e.g. 1.0.1]
22
+
23
+ ** Workaround** A workaround you may have found
24
+
25
+ [ Pull requests] ( https://github.com/Ramo-Y/BulkRename/pulls ) are very welcome.
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature request
3
+ about : Suggest an idea for this project
4
+ title : " Short description of request"
5
+ labels : feature request
6
+ assignees : ' '
7
+ ---
8
+
9
+ ** Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is.
10
+
11
+ ** Describe the solution you'd like** A clear and concise description of what you want to happen.
12
+
13
+ ** Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered.
14
+
15
+ ** Additional context** Add any other context or screenshots about the feature request here.
16
+
17
+ [ Pull requests] ( https://github.com/Ramo-Y/BulkRename/pulls ) are very welcome.
Original file line number Diff line number Diff line change 10
10
<PrivateAssets >all</PrivateAssets >
11
11
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
12
12
</PackageReference >
13
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.11.1 " />
13
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0 " />
14
14
<PackageReference Include =" NUnit" Version =" 4.2.2" />
15
- <PackageReference Include =" NUnit.Analyzers" Version =" 4.3 .0" >
15
+ <PackageReference Include =" NUnit.Analyzers" Version =" 4.4 .0" >
16
16
<PrivateAssets >all</PrivateAssets >
17
17
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
18
18
</PackageReference >
Original file line number Diff line number Diff line change 5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 8.0.10 " />
9
- <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 8.0.10 " />
10
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Tools" Version =" 8.0.10 " >
8
+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 8.0.11 " />
9
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 8.0.11 " />
10
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Tools" Version =" 8.0.11 " >
11
11
<PrivateAssets >all</PrivateAssets >
12
12
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
13
13
</PackageReference >
14
- <PackageReference Include =" Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version =" 1.21.0" />
15
14
<PackageReference Include =" Newtonsoft.Json" Version =" 13.0.3" />
16
- <PackageReference Include =" Serilog" Version =" 4.1 .0" />
15
+ <PackageReference Include =" Serilog" Version =" 4.2 .0" />
17
16
<PackageReference Include =" Serilog.AspNetCore" Version =" 8.0.3" />
18
17
<PackageReference Include =" Serilog.Sinks.Seq" Version =" 8.0.0" />
19
18
</ItemGroup >
Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ private async Task TrySeedData(DbContext context)
55
55
56
56
_logger . LogWarning ( "Database is propably not ready..." ) ;
57
57
_logger . LogWarning ( $ "Connection failed, will try again. Max timeout = { _connectionTimeOut } ms") ;
58
- Thread . Sleep ( 1000 ) ;
58
+
59
+ await Task . Delay ( 1000 ) ;
59
60
await TrySeedData ( context ) ;
60
61
}
61
62
}
Original file line number Diff line number Diff line change 45
45
</main >
46
46
</div >
47
47
48
- <footer class =" border-top footer text-muted" >
49
- <div class =" container" >
50
- © ; 2024 - BulkRename - <a asp-area =" " asp-controller =" Home" asp-action =" Index" >@SharedLocalizer [LocalizationConstants.HOME]</a >
48
+ <footer class =" footer text-muted" >
49
+ <div class =" container footer-links" >
50
+ <a >© ; 2024 - BulkRename</a >
51
+ <a href =" https://github.com/Ramo-Y/BulkRename" >Project page</a >
52
+ <a href =" https://github.com/sponsors/Ramo-Y" >&hearts ; Support this project</a >
51
53
</div >
52
54
</footer >
53
55
<script src =" ~/lib/jquery/dist/jquery.min.js" ></script >
Original file line number Diff line number Diff line change @@ -40,9 +40,16 @@ button.accept-policy {
40
40
}
41
41
42
42
.footer {
43
+ border-top : 1px solid # ccc ;
43
44
position : absolute;
44
45
bottom : 0 ;
45
46
width : 100% ;
46
47
white-space : nowrap;
47
48
line-height : 60px ;
48
49
}
50
+
51
+ .footer-links {
52
+ display : flex;
53
+ justify-content : space-evenly;
54
+ align-items : center;
55
+ }
You can’t perform that action at this time.
0 commit comments