Server.Hotfix.csproj 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <AssemblyName>Hotfix</AssemblyName>
  5. <RootNamespace>ETHotfix</RootNamespace>
  6. <LangVersion>7.3</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  13. <OutputPath>..\..\Bin\</OutputPath>
  14. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  18. <OutputPath>..\..\Bin\</OutputPath>
  19. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Compile Remove="Other\**" />
  23. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Message\NetOuterComponentSystem.cs">
  24. <Link>Module\Message\NetOuterComponentSystem.cs</Link>
  25. </Compile>
  26. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericChangeEvent_NotifyWatcher.cs">
  27. <Link>Module\Numeric\NumericChangeEvent_NotifyWatcher.cs</Link>
  28. </Compile>
  29. <Compile Include="..\..\Unity\Assets\Hotfix\Module\Numeric\NumericWatcher_Hp_ShowUI.cs">
  30. <Link>Module\Numeric\NumericWatcher_Hp_ShowUI.cs</Link>
  31. </Compile>
  32. <EmbeddedResource Remove="Other\**" />
  33. <None Remove="Other\**" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <ProjectReference Include="..\Model\Server.Model.csproj" />
  37. </ItemGroup>
  38. </Project>