forked from Dawn-of-Light/DOLSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDOLServer.csproj
61 lines (61 loc) · 2.73 KB
/
DOLServer.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
<Project>
<PropertyGroup>
<BaseIntermediateOutputPath>..\build\DOLServer\$(Configuration)\</BaseIntermediateOutputPath>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon>icon.ico</ApplicationIcon>
<AssemblyName>DOLServer</AssemblyName>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<OutputPath>..\$(Configuration)\</OutputPath>
<IntermediateOutputPath>..\build\DOLServer\$(Configuration)\obj\</IntermediateOutputPath>
<UseAppHost>false</UseAppHost>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Dawn of Light - DOLServer</AssemblyTitle>
<Description>Main entrypoint for starting the server</Description>
<Copyright>Dawn of Light Development Team</Copyright>
<Company>Dawn of Light Development Team</Company>
<Product>DAoC Server Side Emulation Package - Dawn of Light</Product>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>False</Optimize>
<DebugType>Full</DebugType>
<DebugSymbols>true</DebugSymbols>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>None</DebugType>
<DebugSymbols>false</DebugSymbols>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<RegisterForComInterop>False</RegisterForComInterop>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.ServiceProcess.ServiceController" Version="7.0.0" />
<PackageReference Include="log4net" Version="2.0.15" />
<ProjectReference Include="..\GameServer\GameServer.csproj" Name="GameServer" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
<Content Include="DOLServer.sh" CopyToOutputDirectory="always" />
<Content Include="DOLServer.bat" CopyToOutputDirectory="always" />
</ItemGroup>
<Target Name="CreateLibFolder" AfterTargets="Build">
<MakeDir Directories="$(OutDir)lib" />
</Target>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>