File tree Expand file tree Collapse file tree 8 files changed +18
-12
lines changed
Source/Krypton Components Expand file tree Collapse file tree 8 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 3
3
====
4
4
5
5
## 2025-11-xx - Build 2511 (V10 - alpha) - November 2025
6
+ * Implemented [ #952 ] ( https://github.com/Krypton-Suite/Standard-Toolkit/issues/952 ) , Place built NuGet packages into separate directory
6
7
* Implemented [ #892 ] ( https://github.com/Krypton-Suite/Standard-Toolkit/issues/892 ) , ` KryptonButton ` UAC Shield icons need to match the OS style
7
8
* Resolved [ #2514 ] ( https://github.com/Krypton-Suite/Standard-Toolkit/issues/2514 ) , ` KryptonPanel.OnPaint ` does not call base.
8
9
* Resolved [ #2508 ] ( https://github.com/Krypton-Suite/Standard-Toolkit/issues/2508 ) , Add internal ` InDesignMode() ` extension methods to both ` Control ` and ` Component ` classes.
Original file line number Diff line number Diff line change 29
29
30
30
<Target Name =" CleanPackages" >
31
31
<ItemGroup >
32
- <NugetPkgs Include =" ..\..\..\Bin\Canary\*.nupkg" />
32
+ <NugetPkgs Include =" ..\..\..\Bin\Packages\ Canary\*.nupkg" />
33
33
</ItemGroup >
34
34
<Delete Files =" @(NugetPkgs)" />
35
35
</Target >
54
54
55
55
<Target Name =" Push" >
56
56
<ItemGroup >
57
- <NugetPkgs Include =" ..\..\..\Bin\Canary\*.$(LibraryVersion).nupkg" />
57
+ <NugetPkgs Include =" ..\..\..\Bin\Packages\ Canary\*.$(LibraryVersion).nupkg" />
58
58
</ItemGroup >
59
59
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
60
60
</Target >
Original file line number Diff line number Diff line change 29
29
30
30
<Target Name =" CleanPackages" >
31
31
<ItemGroup >
32
- <NugetPkgs Include =" ..\..\..\Bin\Installer\*.nupkg" />
32
+ <NugetPkgs Include =" ..\..\..\Bin\Packages\ Installer\*.nupkg" />
33
33
</ItemGroup >
34
34
<Delete Files =" @(NugetPkgs)" />
35
35
</Target >
54
54
55
55
<Target Name =" Push" >
56
56
<ItemGroup >
57
- <NugetPkgs Include =" ..\..\..\Bin\Installer\*.$(LibraryVersion).nupkg" />
57
+ <NugetPkgs Include =" ..\..\..\Bin\Packages\ Installer\*.$(LibraryVersion).nupkg" />
58
58
</ItemGroup >
59
59
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
60
60
</Target >
Original file line number Diff line number Diff line change 29
29
30
30
<Target Name =" CleanPackages" >
31
31
<ItemGroup >
32
- <NugetPkgs Include =" ..\Bin\Release\*.nupkg" />
32
+ <NugetPkgs Include =" ..\Bin\Packages\ Release\*.nupkg" />
33
33
</ItemGroup >
34
34
<Delete Files =" @(NugetPkgs)" />
35
35
</Target >
70
70
71
71
<Target Name =" Push" >
72
72
<ItemGroup >
73
- <NugetPkgs Include =" ..\Bin\Release\*.$(LibraryVersion).nupkg" />
73
+ <NugetPkgs Include =" ..\Bin\Packages\ Release\*.$(LibraryVersion).nupkg" />
74
74
</ItemGroup >
75
75
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
76
76
</Target >
Original file line number Diff line number Diff line change 29
29
30
30
<Target Name =" CleanPackages" >
31
31
<ItemGroup >
32
- <NugetPkgs Include =" ..\Bin\Canary\*.nupkg" />
32
+ <NugetPkgs Include =" ..\Bin\Packages\ Canary\*.nupkg" />
33
33
</ItemGroup >
34
34
<Delete Files =" @(NugetPkgs)" />
35
35
</Target >
54
54
55
55
<Target Name =" Push" >
56
56
<ItemGroup >
57
- <NugetPkgs Include =" ..\Bin\Canary\*.$(LibraryVersion).nupkg" />
57
+ <NugetPkgs Include =" ..\Bin\Packages\ Canary\*.$(LibraryVersion).nupkg" />
58
58
</ItemGroup >
59
59
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
60
60
</Target >
Original file line number Diff line number Diff line change 29
29
30
30
<Target Name =" CleanPackages" >
31
31
<ItemGroup >
32
- <NugetPkgs Include =" ..\Bin\Installer\*.nupkg" />
32
+ <NugetPkgs Include =" ..\Bin\Packages\ Installer\*.nupkg" />
33
33
</ItemGroup >
34
34
<Delete Files =" @(NugetPkgs)" />
35
35
</Target >
54
54
55
55
<Target Name =" Push" >
56
56
<ItemGroup >
57
- <NugetPkgs Include =" ..\Bin\Installer\*.$(LibraryVersion).nupkg" />
57
+ <NugetPkgs Include =" ..\Bin\Packages\ Installer\*.$(LibraryVersion).nupkg" />
58
58
</ItemGroup >
59
59
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
60
60
</Target >
Original file line number Diff line number Diff line change 31
31
32
32
<Target Name =" CleanPackages" >
33
33
<ItemGroup >
34
- <NugetPkgs Include =" ..\Bin\Nightly\*.nupkg" />
34
+ <NugetPkgs Include =" ..\Bin\Packages\ Nightly\*.nupkg" />
35
35
</ItemGroup >
36
36
<Delete Files =" @(NugetPkgs)" />
37
37
</Target >
56
56
57
57
<Target Name =" Push" >
58
58
<ItemGroup >
59
- <NugetPkgs Include =" ..\Bin\Nightly\*.$(LibraryVersion).nupkg" />
59
+ <NugetPkgs Include =" ..\Bin\Packages\ Nightly\*.$(LibraryVersion).nupkg" />
60
60
</ItemGroup >
61
61
<Exec Command =" nuget.exe push %(NugetPkgs.Identity)" />
62
62
</Target >
Original file line number Diff line number Diff line change 20
20
<Version >$(LibraryVersion)</Version >
21
21
</PropertyGroup >
22
22
23
+ <!-- Configure NuGet package output to separate directory for easier management -->
24
+ <PropertyGroup >
25
+ <PackageOutputPath >$(MSBuildThisFileDirectory)..\..\Bin\Packages\$(Configuration)\</PackageOutputPath >
26
+ </PropertyGroup >
27
+
23
28
<Choose >
24
29
<When Condition =" '$(Configuration)' == 'Canary'" >
25
30
<ItemGroup >
You can’t perform that action at this time.
0 commit comments