-
Notifications
You must be signed in to change notification settings - Fork 0
/
RishWinTools.csproj
35 lines (35 loc) · 1.32 KB
/
RishWinTools.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.0</Version>
<Company>Delo Design</Company>
<Product>RishWinTools</Product>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<ApplicationIcon>icon.ico</ApplicationIcon>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PackageName>RishWinTools_v$(Version)</PackageName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\$(PackageName)\RishWinTools\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="icon.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PackageRelease" BeforeTargets="AfterBuild" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ZipDirectory
SourceDirectory="bin\Release\$(PackageName)"
DestinationFile="bin\Release\$(PackageName).zip"
Overwrite="true"/>
</Target>
</Project>