forked from dotnet/corert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Platformer2D.csproj
71 lines (65 loc) · 2.56 KB
/
Platformer2D.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<DefineConstants>$(DefineConstants);WINDOWS;LINUX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<RdXmlFile Include="rd.xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Accelerometer.cs">
<Link>Game\Accelerometer.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Animation.cs">
<Link>Game\Animation.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\AnimationPlayer.cs">
<Link>Game\AnimationPlayer.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Circle.cs">
<Link>Game\Circle.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Enemy.cs">
<Link>Game\Enemy.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Gem.cs">
<Link>Game\Gem.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Level.cs">
<Link>Game\Level.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Player.cs">
<Link>Game\Player.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\RectangleExtensions.cs">
<Link>Game\RectangleExtensions.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\Tile.cs">
<Link>Game\Tile.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\TouchCollectionExtensions.cs">
<Link>Game\TouchCollectionExtensions.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game.cs">
<Link>Game.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Game\VirtualGamePad.cs">
<Link>Game\VirtualGamePad.cs</Link>
</Compile>
<Compile Include="MonoGame.Samples\Platformer2D\Program.cs">
<Link>Program.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<MonoGameContentReference Include="MonoGame.Samples\Platformer2D\Content\Platformer2D.mgcb">
<Link>Content\Platformer2D.mgcb</Link>
</MonoGameContentReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="1.0.0-alpha-*" />
<PackageReference Include="MonoGame.Content.Builder" Version="3.7.0.9" />
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.7.0.7" />
</ItemGroup>
</Project>