Skip to content

Commit 5c43c6c

Browse files
committed
v0.4.0
1 parent bf15fa3 commit 5c43c6c

File tree

6 files changed

+44
-5
lines changed

6 files changed

+44
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ publish/
186186
*.azurePubxml
187187
# Note: Comment the next line if you want to checkin your web deploy settings,
188188
# but database connection strings (with potential passwords) will be unencrypted
189-
*.pubxml
189+
# *.pubxml
190190
*.publishproj
191191

192192
# Microsoft Azure Web App publish settings. Comment the next line if you want to

AviUtlScriptExtractor/AviUtlScriptExtractor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<Version>0.3.0</Version>
8+
<Version>0.4.0</Version>
99
<Authors>karoterra</Authors>
1010
<Copyright>Copyright © 2021 karoterra</Copyright>
1111
</PropertyGroup>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>Any CPU</Platform>
9+
<PublishDir>..\publish\AviUtlScriptExtractor-win64-fd</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<TargetFramework>net8.0</TargetFramework>
12+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13+
<SelfContained>false</SelfContained>
14+
<PublishSingleFile>true</PublishSingleFile>
15+
<PublishReadyToRun>false</PublishReadyToRun>
16+
</PropertyGroup>
17+
</Project>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>Any CPU</Platform>
9+
<PublishDir>..\publish\AviUtlScriptExtractor-win64-sc</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<TargetFramework>net8.0</TargetFramework>
12+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>true</PublishSingleFile>
15+
<PublishReadyToRun>false</PublishReadyToRun>
16+
<PublishTrimmed>false</PublishTrimmed>
17+
</PropertyGroup>
18+
</Project>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.4.0 - 2025-02-09
4+
### 変更
5+
- ターゲットフレームワークを .NET 8.0 に更新 #1
6+
37
## 0.3.0 - 2021-12-18
48
### 追加
59
- csv に出力できる列にスクリプトの使用回数を追加

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
から最新版の ZIP ファイルをダウンロードし、好きな場所に展開してください。
1010

1111
- `AviUtlScriptExtractor-<バージョン>-win64-fd.zip`
12-
- .NET 6 ランタイムをインストール済みの場合
12+
- .NET 8 ランタイムをインストール済みの場合
1313
- `AviUtlScriptExtractor-<バージョン>-win64-sc.zip`
14-
- .NET 6 ランタイムをインストールせずに使う場合
14+
- .NET 8 ランタイムをインストールせずに使う場合
1515
- よく分からないがとにかく使いたい場合
1616

1717
アンインストール時には展開したフォルダを削除してください。
@@ -32,7 +32,7 @@ AviUtl プロジェクトファイル(*.aup)を`AviUtlScriptExtractor.exe`
3232
### コンソールから使う場合
3333
```
3434
> AviUtlScriptExtractor --help
35-
AviUtlScriptExtractor 0.3.0
35+
AviUtlScriptExtractor 0.4.0
3636
Copyright © 2021 karoterra
3737
USAGE:
3838
通常:

0 commit comments

Comments
 (0)