mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>ET</RootNamespace>
|
|
<LangVersion>11</LangVersion>
|
|
<AssemblyName>Hotfix</AssemblyName>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>DOTNET</DefineConstants>
|
|
<OutputPath>..\..\Bin\</OutputPath>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>DOTNET</DefineConstants>
|
|
<OutputPath>..\..\Bin\</OutputPath>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<Optimize>false</Optimize>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\..\Assets\GameScripts\DotNet\Hotfix\Client\**\*.cs">
|
|
<Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
|
|
</Compile>
|
|
|
|
<Compile Include="..\..\Assets\GameScripts\DotNet\Hotfix\Server\**\*.cs">
|
|
<Link>Server\%(RecursiveDir)%(FileName)%(Extension)</Link>
|
|
</Compile>
|
|
|
|
<Compile Include="..\..\Assets\GameScripts\DotNet\Hotfix\Share\**\*.cs">
|
|
<Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\..\Share\Share.SourceGenerator\Share.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
|
|
<ProjectReference Include="..\Model\DotNet.Model.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Client\LockStep\" />
|
|
</ItemGroup>
|
|
|
|
</Project> |