| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>8</LangVersion>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="Other\**" />
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Config\ConfigComponentSystem.cs">
- <Link>Module\Config\ConfigComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\MessageDispatcherComponentSystem.cs">
- <Link>Module\Message\MessageDispatcherComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetKcpComponentSystem.cs">
- <Link>Module\Message\NetKcpComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetThreadComponentSystem.cs">
- <Link>Module\Message\NetThreadComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionAcceptTimeoutComponentSystem.cs">
- <Link>Module\Message\SessionAcceptTimeoutComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\SessionIdleCheckerComponentSystem.cs">
- <Link>Module\Message\SessionIdleCheckerComponentSystem.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
- <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
- <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
- </Compile>
- <EmbeddedResource Remove="Other\**" />
- <None Remove="Other\**" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\Server.Model.csproj" />
- </ItemGroup>
- </Project>
|