forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonoGame.Content.Builder.Editor.Linux.csproj
54 lines (45 loc) · 1.97 KB
/
MonoGame.Content.Builder.Editor.Linux.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>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RollForward>Major</RollForward>
<Description>The MonoGame Framework Content Builder Editor (MGCB-Editor) is a graphical tool used for editing your content projects ready for processing.</Description>
<BaseOutputPath>..\..\Artifacts\MonoGame.Content.Builder.Editor\Linux</BaseOutputPath>
<DefineConstants>GTK</DefineConstants>
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
<AssemblyName>mgcb-editor-linux</AssemblyName>
<AssemblyTitle>MGCB Editor</AssemblyTitle>
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.glade" />
<EmbeddedResource Include="**\*.glade">
<LogicalName>%(Filename)%(Extension)</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Remove="Platform\**\*" />
<Compile Remove="Platform\**\*" />
<Compile Include="Platform\Linux\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Templates\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Templates\%(Filename)%(Extension)</Link>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Eto.Forms" Version="2.6.0" />
<PackageReference Include="Eto.Platform.Gtk" Version="2.6.0" />
<PackageReference Include="GtkSharp" Version="3.24.24.34" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MonoGame.Framework\MonoGame.Framework.DesktopGL.csproj">
<AdditionalProperties>CopyContentFiles=False</AdditionalProperties>
</ProjectReference>
<ProjectReference Include="..\..\MonoGame.Framework.Content.Pipeline\MonoGame.Framework.Content.Pipeline.csproj">
<AdditionalProperties>CopyContentFiles=False</AdditionalProperties>
</ProjectReference>
</ItemGroup>
<Import Project="MonoGame.Content.Builder.Editor.targets" />
</Project>