Files
ClientModLoader/Plugin.ClientModLoader/Plugin.ClientModLoader.csproj
pas2704 f04de5080e
All checks were successful
Build / Compute Version (push) Successful in 5s
Build / Build Nuget package (push) Successful in 34s
Fix package type and add package details
2025-05-11 16:48:51 -04:00

31 lines
1.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWindowsForms>True</UseWindowsForms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<RestoreAdditionalProjectSources>https://ng.zznty.ru/v3/index.json</RestoreAdditionalProjectSources>
<EnableDynamicLoading>true</EnableDynamicLoading>
<PackageType>CringePlugin</PackageType>
<Authors>zznty</Authors>
<PackageId>Plugin.ClientModLoader</PackageId>
<AssemblyName>Plugin.ClientModLoader</AssemblyName>
<Title>Client Mod Loader</Title>
<Description>This plugin allows players to load client side mods when joining servers</Description>
<PackageProjectUrl>https://git.zznty.ru/PvE/ClientModLoader</PackageProjectUrl>
<RepositoryUrl>https://git.zznty.ru/PvE/ClientModLoader</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CringePlugins" Version="*" ExcludeAssets="runtime; native"/>
<PackageReference Include="Steamworks.NET" Version="20.1.0" ExcludeAssets="runtime; native" />
</ItemGroup>
</Project>