-
-
Notifications
You must be signed in to change notification settings - Fork 334
/
GeneticSharp.Runner.GtkApp.csproj
94 lines (86 loc) · 3.33 KB
/
GeneticSharp.Runner.GtkApp.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<Import Project="..\msbuilds\GeneticSharp.dotnet-core.targets" />
<Import Project="..\msbuilds\GeneticSharp.common.targets" />
<PropertyGroup>
<OutputType>WinExe</OutputType>
<RootNamespace>GeneticSharp.Runner.GtkApp</RootNamespace>
<AssemblyName>GeneticSharp.Runner.GtkApp</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Remove="references\**" />
<EmbeddedResource Remove="references\**" />
<None Remove="references\**" />
</ItemGroup>
<ItemGroup Condition=" '$(OS)' == 'Unix' ">
<Reference Include="atk-sharp">
<HintPath>references\Unix\atk-sharp.dll</HintPath>
</Reference>
<Reference Include="gtk-dotnet">
<HintPath>references\Unix\gtk-dotnet.dll</HintPath>
</Reference>
<Reference Include="gtk-sharp">
<HintPath>references\Unix\gtk-sharp.dll</HintPath>
</Reference>
<Reference Include="glib-sharp">
<HintPath>references\Unix\glib-sharp.dll</HintPath>
</Reference>
<Reference Include="glade-sharp">
<HintPath>references\Unix\glade-sharp.dll</HintPath>
</Reference>
<Reference Include="gdk-sharp">
<HintPath>references\Unix\gdk-sharp.dll</HintPath>
</Reference>
<Reference Include="pango-sharp">
<HintPath>references\Unix\pango-sharp.dll</HintPath>
</Reference>
<Reference Include="Mono.Posix">
<HintPath>references\Unix\Mono.Posix.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(OS)' == 'Windows_NT' ">
<Reference Include="atk-sharp">
<HintPath>references\Windows_NT\atk-sharp.dll</HintPath>
</Reference>
<Reference Include="gtk-dotnet">
<HintPath>references\Windows_NT\gtk-dotnet.dll</HintPath>
</Reference>
<Reference Include="gtk-sharp">
<HintPath>references\Windows_NT\gtk-sharp.dll</HintPath>
</Reference>
<Reference Include="glib-sharp">
<HintPath>references\Windows_NT\glib-sharp.dll</HintPath>
</Reference>
<Reference Include="glade-sharp">
<HintPath>references\Windows_NT\glade-sharp.dll</HintPath>
</Reference>
<Reference Include="gdk-sharp">
<HintPath>references\Windows_NT\gdk-sharp.dll</HintPath>
</Reference>
<Reference Include="pango-sharp">
<HintPath>references\Windows_NT\pango-sharp.dll</HintPath>
</Reference>
<Reference Include="Mono.Posix">
<HintPath>references\Windows_NT\Mono.Posix.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="gtk-gui\gui.stetic">
<LogicalName>gui.stetic</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GeneticSharp.Domain\GeneticSharp.Domain.csproj" />
<ProjectReference Include="..\GeneticSharp.Extensions\GeneticSharp.Extensions.csproj" />
<ProjectReference Include="..\GeneticSharp.Infrastructure.Framework\GeneticSharp.Infrastructure.Framework.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Icon.png">
<DeployService-UseProjectRelativePath>True</DeployService-UseProjectRelativePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>