-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFolderSnippets.csproj
More file actions
39 lines (32 loc) · 1.41 KB
/
FolderSnippets.csproj
File metadata and controls
39 lines (32 loc) · 1.41 KB
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
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>FolderSnippets</AssemblyName>
<RootNamespace>FolderSnippets</RootNamespace>
<Platforms>x64</Platforms>
<ApplicationIcon Condition="Exists('Assets\\app.ico')">Assets\app.ico</ApplicationIcon>
<VersionPrefix>0.1</VersionPrefix>
<Version>0.1.0</Version>
<FileVersion>0.1.0.0</FileVersion>
<InformationalVersion>0.1</InformationalVersion>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoHotkey.Interop" Version="1.0.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\\app.ico" CopyToOutputDirectory="PreserveNewest" Condition="Exists('Assets\\app.ico')" />
</ItemGroup>
<Target Name="CopyVersionedExe" AfterTargets="Build">
<Copy SourceFiles="$(TargetPath)" DestinationFiles="$(OutDir)FolderSnippets.v$(VersionPrefix).exe" />
</Target>
</Project>