- Timestamp:
- Aug 27, 2014, 3:29:15 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
r130 r133 10 10 <AssemblyName>7dtd-server-fixes</AssemblyName> 11 11 <RootNamespace>AllocsFixes</RootNamespace> 12 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> 12 13 </PropertyGroup> 13 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 42 43 </ItemGroup> 43 44 <ItemGroup> 44 <Compile Include="src\AllocsNetTelnetServer.cs" />45 45 <Compile Include="src\AssemblyInfo.cs" /> 46 <Compile Include="src\AllocsTelnetConnection.cs" />47 46 <Compile Include="src\AllocsLogFunctions.cs" /> 48 47 <Compile Include="src\AdminToolsStuff.cs" /> … … 50 49 <Compile Include="src\CommandExtensions.cs" /> 51 50 <Compile Include="src\CommonMappingFunctions.cs" /> 52 <Compile Include="src\ConsoleOutputSeparator.cs" />53 51 <Compile Include="src\MapRendering\MapRendering.cs" /> 54 52 <Compile Include="src\MapRendering\MapRenderBlockBuffer.cs" /> … … 70 68 <Compile Include="src\CustomCommands\Give.cs" /> 71 69 <Compile Include="src\CustomCommands\ListItems.cs" /> 70 <Compile Include="src\NetConnections\ConsoleOutputSeparator.cs" /> 71 <Compile Include="src\NetConnections\NetTelnetServer.cs" /> 72 <Compile Include="src\NetConnections\IServer.cs" /> 73 <Compile Include="src\NetConnections\IConnection.cs" /> 74 <Compile Include="src\NetConnections\Servers\Telnet\Telnet.cs" /> 75 <Compile Include="src\NetConnections\Servers\Telnet\TelnetConnection.cs" /> 76 <Compile Include="src\NetConnections\Servers\Web\Web.cs" /> 77 <Compile Include="src\NetConnections\Servers\Web\PathHandler.cs" /> 78 <Compile Include="src\NetConnections\Servers\Web\StaticHandler.cs" /> 79 <Compile Include="src\NetConnections\Servers\Web\SimpleRedirectHandler.cs" /> 80 <Compile Include="src\NetConnections\Servers\Web\MimeType.cs" /> 72 81 </ItemGroup> 73 82 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> … … 76 85 <Folder Include="src\MapRendering\" /> 77 86 <Folder Include="src\CustomCommands\" /> 87 <Folder Include="src\NetConnections\" /> 88 <Folder Include="src\NetConnections\Servers\" /> 89 <Folder Include="src\NetConnections\Servers\Telnet\" /> 90 <Folder Include="src\NetConnections\Servers\Web\" /> 78 91 </ItemGroup> 79 92 </Project>
Note:
See TracChangeset
for help on using the changeset viewer.