forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMonoGame.Content.Builder.Editor.Mac.csproj
55 lines (45 loc) · 1.85 KB
/
MonoGame.Content.Builder.Editor.Mac.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-macos</TargetFramework>
<RollForward>Major</RollForward>
<BaseOutputPath>..\..\Artifacts\MonoGame.Content.Builder.Editor\Mac</BaseOutputPath>
<DefineConstants>MONOMAC;MAC</DefineConstants>
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
<SupportedOSPlatformVersion>10.15</SupportedOSPlatformVersion>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
<AssemblyName>mgcb-editor-mac</AssemblyName>
<AssemblyTitle>MGCB Editor</AssemblyTitle>
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<None Remove="Platform\**\*" />
<Compile Remove="Platform\**\*" />
<Compile Include="Platform\Mac\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Templates\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Templates\%(Filename)%(Extension)</Link>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Eto.Forms" Version="2.8.3" />
<PackageReference Include="Eto.Platform.macOS" Version="2.8.3" />
</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>
<ItemGroup>
<None Remove="Icon.icns" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Icon.icns" />
</ItemGroup>
<Import Project="MonoGame.Content.Builder.Editor.targets" />
</Project>