-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathLaunchpad.Utilities.csproj
54 lines (45 loc) · 2.07 KB
/
Launchpad.Utilities.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources/Icons8-Android-Industry-Engineering.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.24.24.95" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="NGettext" Version="0.6.7" />
<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Update="Nullable" Version="1.3.1" />
<PackageReference Update="JetBrains.Annotations" Version="2023.3.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Interface\Launchpad.Utilities.glade" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\locale\**\*.po">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<InProject>false</InProject>
</Content>
<Content Include="../LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<InProject>false</InProject>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Launchpad.Common\Launchpad.Common.csproj" />
</ItemGroup>
<Target Name="CopyGTK" AfterTargets="Build">
<ItemGroup>
<GTKbin Include="$(SolutionDir)\lib\gtk+-3.16-bundle-win32\bin\*.*" />
<GTKetc Include="$(SolutionDir)\lib\gtk+-3.16-bundle-win32\etc\**\*.*" />
<GTKlib Include="$(SolutionDir)\lib\gtk+-3.16-bundle-win32\lib\**\*.*" />
<GTKshare Include="$(SolutionDir)\lib\gtk+-3.16-bundle-win32\share\**\*.*" />
</ItemGroup>
<Message Text="Copying GTK+ libraries..." />
<Copy SourceFiles="@(GTKbin)" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(GTKetc)" DestinationFolder="$(OutputPath)\etc\%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(GTKlib)" DestinationFolder="$(OutputPath)\lib\%(RecursiveDir)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(GTKshare)" DestinationFolder="$(OutputPath)\share\%(RecursiveDir)" SkipUnchangedFiles="true" />
</Target>
</Project>