This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
HatlessEngine.csproj
106 lines (106 loc) · 4.38 KB
/
HatlessEngine.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
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{FC352E78-4A87-4DBD-9A98-C20D1A790230}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>HatlessEngine</RootNamespace>
<AssemblyName>HatlessEngine</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\Release\</OutputPath>
<Optimize>true</Optimize>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="MoreLinq">
<HintPath>..\packages\morelinq.1.0.16006\lib\net35\MoreLinq.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.XML" />
</ItemGroup>
<ItemGroup>
<Compile Include="Alignment.cs" />
<Compile Include="CollisionRule.cs" />
<Compile Include="Profiler.cs" />
<Compile Include="ProfilerItem.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Resources\Cursor.cs" />
<Compile Include="DrawJobs\FilledRectDrawJob.cs" />
<Compile Include="DrawJobs\LineDrawJob.cs" />
<Compile Include="DrawJobs\TextureDrawJob.cs" />
<Compile Include="DrawJobs\IDrawJob.cs" />
<Compile Include="GUI\TextButton.cs" />
<Compile Include="GUI\HorizontalScrollbar.cs" />
<Compile Include="GUI\Scrollbar.cs" />
<Compile Include="GUI\SolidColorButton.cs" />
<Compile Include="GUI\VerticalScrollbar.cs" />
<Compile Include="GUI\TextBox.cs" />
<Compile Include="Resources\Resource.cs" />
<Compile Include="Game.cs" />
<Compile Include="QuadTree.cs" />
<Compile Include="Shapes\IConvexShape.cs" />
<Compile Include="Shapes\Polygon.cs" />
<Compile Include="Shapes\Rectangle.cs" />
<Compile Include="Resources\View.cs" />
<Compile Include="Resources\Resources.cs" />
<Compile Include="Resources\GameObject.cs" />
<Compile Include="Resources\PhysicalObject.cs" />
<Compile Include="Resources\Sprite.cs" />
<Compile Include="Input.cs" />
<Compile Include="Button.cs" />
<Compile Include="Resources\Music.cs" />
<Compile Include="Resources\GameObjectCollection.cs" />
<Compile Include="Misc.cs" />
<Compile Include="Log.cs" />
<Compile Include="Resources\Sound.cs" />
<Compile Include="Resources\SoundControl.cs" />
<Compile Include="Resources\Font.cs" />
<Compile Include="GUI\FullImageButton.cs" />
<Compile Include="Exceptions.cs" />
<Compile Include="EventArgs.cs" />
<Compile Include="Resources\ExternalResource.cs" />
<Compile Include="Shapes\ComplexRectangle.cs" />
<Compile Include="Shapes\Point.cs" />
<Compile Include="DrawX.cs" />
<Compile Include="Color.cs" />
<Compile Include="Shapes\Line.cs" />
<Compile Include="Shapes\Shape.cs" />
<Compile Include="Window.cs" />
<Compile Include="Resources\ObjectBlueprint.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="defaultwindowicon.png" />
</ItemGroup>
<ItemGroup>
<None Include="ClassDiagram.cd" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<ProjectReference Include="..\SDL2-CS\SDL2-CS.csproj">
<Project>{85480198-8711-4355-830e-72fd794ad3f6}</Project>
<Name>SDL2-CS</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>