-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobotron.csproj
108 lines (108 loc) · 6.15 KB
/
Robotron.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
107
108
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<ProjectGuid>{C484481D-D125-42B3-A365-83083B995FE1}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<OutputPath>bin</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<TypeScriptToolsVersion>1.8</TypeScriptToolsVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
</PropertyGroup>
<ItemGroup>
<Content Include="images\robotronsprites.jpg" />
<Content Include="images\robotronsprites.png" />
<Content Include="robotron.html" />
<Content Include="Scripts\game\excanvas.js" />
<Content Include="sounds\death.mp3" />
<Content Include="sounds\enforcer birth.mp3" />
<Content Include="sounds\enforcer shot.mp3" />
<Content Include="sounds\extraguy.mp3" />
<Content Include="sounds\family die.mp3" />
<Content Include="sounds\kill.mp3" />
<Content Include="sounds\rescue.mp3" />
<Content Include="sounds\Robotron 2084 - Arcade.mp3" />
<Content Include="sounds\shot.mp3" />
<Content Include="sounds\spheroid kill.mp3" />
<Content Include="sounds\walking.mp3" />
<Content Include="sounds\wavestart.mp3" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="Scripts\game\animation.ts" />
<TypeScriptCompile Include="Scripts\game\game.ts" />
<TypeScriptCompile Include="Scripts\game\robotron.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\animatedSprite.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\bonus.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\brain.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\bullet.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\cruisemissile.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\daddy.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\electrode.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\enforcer.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\enforcerbullet.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\explosion.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\family.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\grunt.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\hulk.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\imagePainter.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\interfaces.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\man.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\mikey.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\mommy.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\robotronSprite.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\skull.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\quark.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\spheroid.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\sprintSheetPainter.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\sprite.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\tank.ts" />
<TypeScriptCompile Include="Scripts\game\sprites\tankshot.ts" />
<TypeScriptCompile Include="Scripts\game\textwriter.ts" />
<TypeScriptCompile Include="Scripts\game\waves.ts" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Robotron</RootNamespace>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets')" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>7870</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:7806/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TypeScriptRemoveComments>false</TypeScriptRemoveComments>
<TypeScriptSourceMap>true</TypeScriptSourceMap>
<TypeScriptNoImplicitAny>True</TypeScriptNoImplicitAny>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<TypeScriptRemoveComments>true</TypeScriptRemoveComments>
<TypeScriptSourceMap>false</TypeScriptSourceMap>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets')" />
</Project>