File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
ConEmu.CommandLine /Tools /ConEmu /*
11
11
* .nupkg
12
+ nuget /data
12
13
packages /**
13
14
* .opendb
Original file line number Diff line number Diff line change 9
9
<tags >graphical console emulator tabs farmanager powershell cmd bash cygwin msys git</tags >
10
10
11
11
<projectUrl >https://conemu.github.io/</projectUrl >
12
- <iconUrl >https://conemu.github.io/img/logo-128. png</iconUrl >
12
+ <icon >images\icon. png</icon >
13
13
<releaseNotes >https://conemu.github.io/en/Whats_New.html</releaseNotes >
14
14
15
15
<copyright >© 2020, Maksim Moisiuk</copyright >
16
16
<requireLicenseAcceptance >false</requireLicenseAcceptance >
17
- <license type =" expression " >BSD-3-Clause </license >
17
+ <license type =" file " >license\license.txt </license >
18
18
19
19
<summary >
20
20
This is a console emulator control that embeds a fully functional console view in a Windows Forms window.
32
32
<files >
33
33
<file src =" ..\..\ConEmuWinForms\bin\ConEmu.WinForms.dll" target =" lib\net40" />
34
34
<file src =" ..\..\ConEmuWinForms\bin\ConEmu.WinForms.Xml" target =" lib\net40" />
35
+ <file src =" ..\data\icon.png" target =" images\icon.png" />
36
+ <file src =" ..\data\license.txt" target =" license\license.txt" />
35
37
</files >
36
38
</package >
Original file line number Diff line number Diff line change @@ -12,6 +12,18 @@ rem ??? what would be the path to Nuget.exe cmdline tool?..
12
12
if exist " ConEmu.Control.WinForms.*.nupkg" del " ConEmu.Control.WinForms.*.nupkg"
13
13
if exist " ConEmu.Control.WinForms\*.nupkg" del " ConEmu.Control.WinForms\*.nupkg"
14
14
15
+ if not exist data mkdir data
16
+ if not exist data\icon.png (
17
+ echo Downloading icon
18
+ ConEmuC -download https://conemu.github.io/img/logo-128.png data\icon.png 2 > nul
19
+ if errorlevel 1 exit /b 1
20
+ )
21
+ if not exist data\license.txt (
22
+ echo Downloading license
23
+ ConEmuC -download https://github.com/Maximus5/ConEmu/raw/master/Release/ConEmu/License.txt data\license.txt 2 > nul
24
+ if errorlevel 1 exit /b 1
25
+ )
26
+
15
27
cd /d ConEmu.Control.WinForms
16
28
call nuget pack -Verbosity detailed -NoDefaultExcludes
17
29
if errorlevel 1 (
You can’t perform that action at this time.
0 commit comments