-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZork-Grupp-L.csproj
93 lines (93 loc) · 4.35 KB
/
Zork-Grupp-L.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CD3513A8-7AF4-4A72-ACC4-EAD8AE4C4ECF}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Zork_Grupp_L</RootNamespace>
<AssemblyName>Zork-Grupp-L</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="JetBrains.Annotations, Version=11.0.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
<HintPath>packages\JetBrains.Annotations.11.0.0\lib\net20\JetBrains.Annotations.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Commands\BaseCommand.cs" />
<Compile Include="Commands\CommandUseItemPreset.cs" />
<Compile Include="Commands\CommandEnter.cs" />
<Compile Include="Commands\CommandExit.cs" />
<Compile Include="Commands\CommandInspect.cs" />
<Compile Include="Commands\CommandDrop.cs" />
<Compile Include="Commands\CommandPickup.cs" />
<Compile Include="Commands\CommandUse.cs" />
<Compile Include="Helpers\Colors.cs" />
<Compile Include="Helpers\ConsoleHelper.cs" />
<Compile Include="Helpers\NameHelper.cs" />
<Compile Include="Helpers\StringHelper.cs" />
<Compile Include="Items\BaseItem.cs" />
<Compile Include="Items\Classroom\ItemCharger.cs" />
<Compile Include="Items\ComputerRoom\FurnishComputer.cs" />
<Compile Include="Items\ComputerRoom\ItemDropTable.cs" />
<Compile Include="Items\ComputerRoom\ItemComputer.cs" />
<Compile Include="Items\Dungeon\ExitBurnDownableDoor.cs" />
<Compile Include="Items\Dungeon\FurnishChair.cs" />
<Compile Include="Items\Dungeon\FurnishPuddle.cs" />
<Compile Include="Items\RoomExit.cs" />
<Compile Include="Items\FurnishingItem.cs" />
<Compile Include="GameFunctions\Game.cs" />
<Compile Include="Items\Dungeon\ItemCylinderHat.cs" />
<Compile Include="Items\Dungeon\ItemFrockCoat.cs" />
<Compile Include="Items\Dungeon\ItemTorch.cs" />
<Compile Include="GameFunctions\Inventory.cs" />
<Compile Include="Items\InventoryItem.cs" />
<Compile Include="GameFunctions\NamedObject.cs" />
<Compile Include="Player\Player.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Rooms\Classroom.cs" />
<Compile Include="Rooms\ComputerRoom.cs" />
<Compile Include="Rooms\RoomRepository.cs" />
<Compile Include="Rooms\Corridor.cs" />
<Compile Include="Rooms\Dungeon.cs" />
<Compile Include="Rooms\Room.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>