mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
misc: fix transform regex in update years workflow
This commit is contained in:
parent
4375cf3f93
commit
0e7e2d03c9
2
.github/workflows/update-copyright-years.yml
vendored
2
.github/workflows/update-copyright-years.yml
vendored
|
@ -18,4 +18,4 @@ jobs:
|
|||
path: |
|
||||
Directory.Build.props
|
||||
BililiveRecorder.WPF/Properties/AssemblyInfo.cs
|
||||
transform: 'Copyright © (?<from>\d{4}) - (\d{4})'
|
||||
transform: '(?<=Copyright © )(?<from>\d{4})-(\d{4})'
|
||||
|
|
|
@ -10,7 +10,7 @@ using System.Windows;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Genteure")]
|
||||
[assembly: AssemblyProduct("B站录播姬")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2018 - 2023 Genteure")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2018-2023 Genteure")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Copyright>Copyright © 2018 - 2023 Genteure</Copyright>
|
||||
<Copyright>Copyright © 2018-2023 Genteure</Copyright>
|
||||
<Authors>Genteure</Authors>
|
||||
<Company>$(Authors)</Company>
|
||||
<LangVersion>9.0</LangVersion>
|
||||
|
|
Loading…
Reference in New Issue
Block a user