forked from kyordhel/GPSRCmdGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GPSRCmdGen.csproj
99 lines (99 loc) · 4.14 KB
/
GPSRCmdGen.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{34FB033E-112E-418F-B815-ADB8EC36027C}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>GPSRCmdGen</RootNamespace>
<AssemblyName>GPSRCmdGen</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="Containers\CategoryContainer.cs" />
<Compile Include="Containers\GestureContainer.cs" />
<Compile Include="Containers\NameContainer.cs" />
<Compile Include="Containers\QuestionsContainer.cs" />
<Compile Include="Containers\RoomContainer.cs" />
<Compile Include="IMetadatable.cs" />
<Compile Include="LocationManager.cs" />
<Compile Include="SpecificLocation.cs" />
<Compile Include="PredefindedQuestion.cs" />
<Compile Include="Program.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Category.cs" />
<Compile Include="GPSRObject.cs" />
<Compile Include="Room.cs" />
<Compile Include="Scanner.cs" />
<Compile Include="Task.cs" />
<Compile Include="DifficultyDegree.cs" />
<Compile Include="Generator.cs" />
<Compile Include="Location.cs" />
<Compile Include="Loader.cs" />
<Compile Include="Grammar.cs" />
<Compile Include="ProductionRule.cs" />
<Compile Include="Factory.cs" />
<Compile Include="GPSRObjectManager.cs" />
<Compile Include="ExampleFilesGenerator.cs" />
<Compile Include="ITiered.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Wildcard.cs" />
<Compile Include="WildcardReplacer.cs" />
<Compile Include="Token.cs" />
<Compile Include="INameable.cs" />
<Compile Include="Gesture.cs" />
<Compile Include="Resources.Designer.cs">
<DependentUpon>Resources.resx</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="PersonName.cs" />
<Compile Include="HiddenTaskElement.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Category2Grammar.txt" />
<Content Include="Resources\Category3Grammar.txt" />
<Content Include="Resources\CountGrammar.txt" />
<Content Include="Resources\FormatSpecification.txt" />
<Content Include="Resources\GrammarHeader.txt" />
<Content Include="Resources\Category1Grammar.txt" />
<Content Include="Resources\IncompleteCommandsGrammar.txt" />
<Content Include="Resources\IncongruentCommandsGrammar.txt" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<EmbeddedResource Include="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
</Project>