Files
Space-Engineers-Timeout-Fix/TimeoutFix.csproj
pas2704 c249c8b660 Use harmony instead of custom patcher
Cleanup code from decompiler
2024-11-06 10:15:39 -05:00

21 lines
855 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>bin\Release\</OutputPath>
<DebugType>none</DebugType>
<PdbPath>none</PdbPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CringePlugins" Version="0.1.32" />
</ItemGroup>
</Project>