-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileMill.csproj
More file actions
36 lines (31 loc) · 1.19 KB
/
Copy pathFileMill.csproj
File metadata and controls
36 lines (31 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseAppHost>true</UseAppHost>
<StartupObject>FileMill.Program</StartupObject>
<ApplicationIcon>app.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Version>0.4.1</Version>
<AssemblyVersion>0.4.1.0</AssemblyVersion>
<FileVersion>0.4.1.0</FileVersion>
<InformationalVersion>0.4.1</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<Resource Include="app.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NetVips" Version="3.2.0" />
<PackageReference Include="NetVips.Native.win-x64" Version="8.18.2" />
<PackageReference Include="wpf-ui" Version="3.0.5" />
</ItemGroup>
<Target Name="CopyTools" AfterTargets="Build">
<ItemGroup>
<ToolsFiles Include="tools\**\*" />
</ItemGroup>
<Copy SourceFiles="@(ToolsFiles)" DestinationFolder="$(OutputPath)\tools\%(RecursiveDir)" SkipUnchangedFiles="true" Condition="Exists('tools')" />
</Target>
</Project>