forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonoGame.Framework.iOSCore.csproj
More file actions
81 lines (68 loc) · 3.43 KB
/
Copy pathMonoGame.Framework.iOSCore.csproj
File metadata and controls
81 lines (68 loc) · 3.43 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
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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFramework>xamarinios10</TargetFramework>
<DefineConstants>IOS;GLES</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<MGOpenGL>GLES</MGOpenGL>
<Description>MonoGame is an open source implementation of the Microsoft XNA 4.x Framework. The goal is to make it easy for XNA developers to create cross-platform games with extremely high code reuse.
This package provides you with MonoGame Framework that works on iOS.</Description>
<PackageTags>monogame;.net core;core;.net standard;standard;ios</PackageTags>
<PackageId>MonoGame.Framework.iOS</PackageId>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Runtime.Serialization" />
</ItemGroup>
<ItemGroup>
<Compile Remove="bin\**\*" />
<Compile Remove="obj\**\*" />
<Compile Remove="Platform\**\*" />
<Compile Remove="Properties\**\*" />
</ItemGroup>
<ItemGroup>
<None Remove="Platform\**\*" />
</ItemGroup>
<ItemGroup>
<Compile Remove="GraphicsDeviceManager.cs" />
<Compile Remove="Graphics\GraphicsAdapter.cs" />
<Compile Remove="Graphics\OcclusionQuery.cs" />
<Compile Remove="Input\Keyboard.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="Platform\iOS\Devices\Sensors\Accelerometer.cs" />
<Compile Include="Platform\iOS\Devices\Sensors\Compass.cs" />
<Compile Include="Platform\iOS\iOSGamePlatform.cs" />
<Compile Include="Platform\iOS\iOSGameView.cs" />
<Compile Include="Platform\iOS\iOSGameViewController.cs" />
<Compile Include="Platform\iOS\iOSGameView_GLAbstraction.cs" />
<Compile Include="Platform\iOS\iOSGameView_Touch.cs" />
<Compile Include="Platform\iOS\iOSGameWindow.cs" />
<Compile Include="Platform\iOS\OrientationConverter.cs" />
<Compile Include="Platform\GamePlatform.Mobile.cs" />
<Compile Include="Platform\Graphics\GraphicsAdapter.Legacy.cs" />
<Compile Include="Platform\Graphics\OpenGL.iOS.cs" />
<Compile Include="Platform\GraphicsDeviceManager.Legacy.cs" />
<Compile Include="Platform\Input\GamePad.iOS.cs" />
<Compile Include="Platform\Input\Joystick.Default.cs" />
<Compile Include="Platform\Input\KeyboardInput.iOS.cs" />
<Compile Include="Platform\Input\MessageBox.iOS.cs" />
<Compile Include="Platform\Input\Mouse.Default.cs" />
<Compile Include="Platform\Input\MouseCursor.Default.cs" />
<Compile Include="Platform\Media\MediaLibrary.iOS.cs" />
<Compile Include="Platform\Media\MediaPlayer.Default.cs" />
<Compile Include="Platform\Media\Song.iOS.cs" />
<Compile Include="Platform\Media\Video.iOS.cs" />
<Compile Include="Platform\Media\VideoPlayer.iOS.cs" />
<Compile Include="Platform\TitleContainer.MacOS.cs" />
<Compile Include="Platform\Utilities\FuncLoader.iOS.cs" />
<Compile Include="Platform\Utilities\InteropHelpers.cs" />
<Compile Include="Platform\Utilities\ReflectionHelpers.Default.cs" />
<Compile Include="..\ThirdParty\StbImageSharp\src\StbImageSharp\**\*.cs" LinkBase="Utilities\StbImageSharp"/>
<Compile Include="..\ThirdParty\StbImageWriteSharp\src\StbImageWriteSharp\**\*.cs" LinkBase="Utilities\StbImageWriteSharp"/>
</ItemGroup>
<ItemGroup>
<Content Include="MonoGame.Framework.iOS.targets" PackagePath="build" />
</ItemGroup>
<Import Project="Platform\OpenGL.targets" />
<Import Project="Platform\OpenAL.targets" />
<Import Project="Platform\Microsoft.Devices.Sensors.targets" />
</Project>