File tree Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 8
8
using System . Text ;
9
9
using System . Threading . Tasks ;
10
10
using System . Windows . Forms ;
11
- using static System . Windows . Forms . VisualStyles . VisualStyleElement ;
12
11
13
12
namespace RishWinTools
14
13
{
15
14
public partial class MainForm : Form
16
15
{
17
16
private TabControl Tabs ;
18
- private Panel Footer ;
19
- private readonly System . ComponentModel . IContainer ? Components ;
20
-
21
- protected override void Dispose ( bool disposing )
22
- {
23
- if ( disposing && ( Components != null ) )
24
- {
25
- Components . Dispose ( ) ;
26
- }
27
- base . Dispose ( disposing ) ;
28
- }
17
+ private Panel Footer ;
29
18
30
19
public MainForm ( )
31
20
{
Original file line number Diff line number Diff line change 10
10
<Product >RishWinTools</Product >
11
11
<RunPostBuildEvent >OnBuildSuccess</RunPostBuildEvent >
12
12
<ApplicationIcon >icon.ico</ApplicationIcon >
13
+ <AppendTargetFrameworkToOutputPath >false</AppendTargetFrameworkToOutputPath >
14
+ <PackageName >RishWinTools_v$(Version)</PackageName >
13
15
</PropertyGroup >
14
16
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
15
- <OutputPath >bin\Release\$(Version) \</OutputPath >
17
+ <OutputPath >bin\Release\$(PackageName)\RishWinTools \</OutputPath >
16
18
</PropertyGroup >
17
19
<ItemGroup >
18
20
<Content Include =" icon.ico" >
24
26
<CopyToOutputDirectory >Always</CopyToOutputDirectory >
25
27
</None >
26
28
</ItemGroup >
29
+ <Target Name =" PackageRelease" BeforeTargets =" AfterBuild" Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
30
+ <ZipDirectory
31
+ SourceDirectory =" bin\Release\$(PackageName)"
32
+ DestinationFile =" bin\Release\$(PackageName).zip"
33
+ Overwrite =" true" />
34
+ </Target >
27
35
</Project >
You can’t perform that action at this time.
0 commit comments