Bump OTAPI of launcher
This commit is contained in:
parent
970a5a03bb
commit
e4072ea0a8
2 changed files with 60 additions and 53 deletions
|
|
@ -1,59 +1,66 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
<!--
|
<!--
|
||||||
Version information for an assembly consists of the following four values:
|
Version information for an assembly consists of the following four values:
|
||||||
|
|
||||||
Major Version
|
Major Version
|
||||||
Minor Version
|
Minor Version
|
||||||
Build Number
|
Build Number
|
||||||
Starting in version 4.2.5, we are no longer including the fourth decimal
|
Starting in version 4.2.5, we are no longer including the fourth decimal
|
||||||
location, which previously held the date and time.
|
location, which previously held the date and time.
|
||||||
|
|
||||||
Also, be sure to release on github with the exact assembly version tag as below
|
Also, be sure to release on github with the exact assembly version tag as below
|
||||||
so that the update manager works correctly (via the Github releases api and mimic)
|
so that the update manager works correctly (via the Github releases api and mimic)
|
||||||
-->
|
-->
|
||||||
<Version>5.9.9</Version>
|
<Version>5.9.9</Version>
|
||||||
<AssemblyTitle>TShock for Terraria</AssemblyTitle>
|
<AssemblyTitle>TShock for Terraria</AssemblyTitle>
|
||||||
<Company>Pryaxis & TShock Contributors</Company>
|
<Company>Pryaxis & TShock Contributors</Company>
|
||||||
<Product>TShockAPI</Product>
|
<Product>TShockAPI</Product>
|
||||||
<Copyright>Copyright © Pryaxis & TShock Contributors 2011-2025</Copyright>
|
<Copyright>Copyright © Pryaxis & TShock Contributors 2011-2025</Copyright>
|
||||||
<!-- extras for nuget -->
|
<!-- extras for nuget -->
|
||||||
<!--<GeneratePackageOnBuild>True</GeneratePackageOnBuild>-->
|
<!--<GeneratePackageOnBuild>True</GeneratePackageOnBuild>-->
|
||||||
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
||||||
<Authors>Pryaxis & TShock Contributors</Authors>
|
<Authors>Pryaxis & TShock Contributors</Authors>
|
||||||
<Description>TShock is a toolbox for Terraria servers and communities.</Description>
|
<Description>TShock is a toolbox for Terraria servers and communities.</Description>
|
||||||
<PackageId>TShock</PackageId> <!-- package name for nuget, instead of TShockAPI -->
|
<PackageId>TShock</PackageId> <!-- package name for nuget, instead of TShockAPI -->
|
||||||
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3">
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3">
|
||||||
<Aliases>BCryptNext</Aliases>
|
<Aliases>BCryptNext</Aliases>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="GetText.NET" Version="8.0.5" />
|
<PackageReference Include="GetText.NET" Version="8.0.5"/>
|
||||||
<PackageReference Include="MySql.Data" Version="9.1.0" />
|
<PackageReference Include="MySql.Data" Version="9.1.0"/>
|
||||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0"/>
|
||||||
<PackageReference Include="Npgsql" Version="9.0.3" />
|
<PackageReference Include="Npgsql" Version="9.0.3"/>
|
||||||
<PackageReference Include="OTAPI.Upcoming" Version="3.3.4" />
|
<PackageReference Include="OTAPI.Upcoming" Version="3.3.4"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\TerrariaServerAPI\TerrariaServerAPI\TerrariaServerAPI.csproj" />
|
<ProjectReference Include="..\TerrariaServerAPI\TerrariaServerAPI\TerrariaServerAPI.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="HttpServer">
|
||||||
|
<HintPath>..\prebuilts\HttpServer.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="..\prebuilts\HttpServer.dll">
|
||||||
|
<Link>HttpServer.dll</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
||||||
|
<Pack>true</Pack>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\prebuilts\HttpServer.dll">
|
|
||||||
<Link>HttpServer.dll</Link>
|
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
||||||
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
||||||
<Pack>true</Pack>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -34,11 +34,11 @@
|
||||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
|
||||||
<PackageReference Include="Npgsql" Version="9.0.3" />
|
<PackageReference Include="Npgsql" Version="9.0.3" />
|
||||||
|
|
||||||
<PackageReference Include="ModFramework" Version="1.1.13" GeneratePathProperty="true" /> <!-- only used to extract out to ./bin. -->
|
<PackageReference Include="ModFramework" Version="1.1.15" GeneratePathProperty="true" /> <!-- only used to extract out to ./bin. -->
|
||||||
<PackageReference Include="GetText.NET" Version="8.0.5" /> <!-- only used to extract out to ./bin. -->
|
<PackageReference Include="GetText.NET" Version="8.0.5" /> <!-- only used to extract out to ./bin. -->
|
||||||
|
|
||||||
<!-- the launcher doesnt need the direct OTAPI reference, but since PackageReference[ExcludeFromSingleFile] doesnt work, exclude the assets and copy manually -->
|
<!-- the launcher doesnt need the direct OTAPI reference, but since PackageReference[ExcludeFromSingleFile] doesnt work, exclude the assets and copy manually -->
|
||||||
<PackageReference Include="OTAPI.Upcoming" Version="3.2.4" ExcludeAssets="all" GeneratePathProperty="true" />
|
<PackageReference Include="OTAPI.Upcoming" Version="3.3.4" ExcludeAssets="all" GeneratePathProperty="true" />
|
||||||
<None Include="$(PkgOTAPI_Upcoming)\lib\net9.0\OTAPI.dll">
|
<None Include="$(PkgOTAPI_Upcoming)\lib\net9.0\OTAPI.dll">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue