Files
SVSimServer/SVSim.EmulatedEntrypoint/SVSim.EmulatedEntrypoint.csproj
2025-05-18 02:27:17 -04:00

61 lines
2.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Facepunch.Steamworks" Version="2.3.3" />
<PackageReference Include="MessagePack" Version="2.5.172" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.172">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Configuration\" />
<Folder Include="Data\" />
<Folder Include="Utility\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SVSim.Database\SVSim.Database.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="lib\libsteam_api.so">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\libsteam_api.so.meta">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\steam_api.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\steam_api.lib">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\steam_api64.dll">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="lib\steam_api64.lib">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="COPY &quot;$(ProjectDir)\lib\*&quot; &quot;$(TargetDir)&quot;" />
</Target>
</Project>