File tree Expand file tree Collapse file tree 2 files changed +3
-21
lines changed Expand file tree Collapse file tree 2 files changed +3
-21
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Authors >Rudokhvist</Authors >
5
- <AssemblyVersion >0.2.2.2 </AssemblyVersion >
6
- <TargetFrameworks >net6.0;net48</ TargetFrameworks >
5
+ <AssemblyVersion >0.3.0.0 </AssemblyVersion >
6
+ <TargetFramework >net8.0</ TargetFramework >
7
7
<Nullable >enable</Nullable >
8
8
<LangVersion >latest</LangVersion >
9
9
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ if exist out rmdir /Q /S out
21
21
22
22
rem release generic version
23
23
24
- dotnet publish -c " Release" -f " net6 .0" -o " out/generic" " /p:LinkDuringPublish=false"
24
+ dotnet publish -c " Release" -f " net8 .0" -o " out/generic" " /p:LinkDuringPublish=false"
25
25
mkdir .\out\%CurrDirName%
26
26
copy .\out\generic\%CurrDirName% .dll .\out\%CurrDirName%
27
27
rem comment section below (downto :zip label) if you don't want to include documentation
@@ -37,21 +37,3 @@ if ERRORLEVEL 1 (
37
37
7z a -tzip -mx7 .\out\%CurrDirName% .zip .\out\%CurrDirName%
38
38
rmdir /Q /S out\%CurrDirName%
39
39
40
- rem release generic-netf version
41
- rem comment section below if you don't target netf ASF version
42
-
43
- dotnet publish -c " Release" -f " net48" -o " out/generic-netf"
44
- mkdir .\out\%CurrDirName%
45
- copy .\out\generic-netf\%CurrDirName% .dll .\out\%CurrDirName%
46
- rem comment section below (downto :zipnetf label) if you don't want to include documentation
47
- if not exist README.md (goto zipnetf)
48
- where /q pandoc.exe
49
- if ERRORLEVEL 1 (
50
- copy README.md .\out\%CurrDirName%
51
- goto zipnetf
52
- ) else (
53
- pandoc --metadata title=" %CurrDirName% " --standalone --columns 2000 -f markdown -t html --self-contained -c .\github-pandoc.css -o .\out\%CurrDirName% \README.html README.md
54
- )
55
- :zipnetf
56
- 7z a -tzip -mx7 .\out\%CurrDirName% -netf.zip .\out\%CurrDirName%
57
- rmdir /Q /S out\%CurrDirName%
You can’t perform that action at this time.
0 commit comments