-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathReloaded.Mod.Loader.Server.csproj
More file actions
59 lines (53 loc) · 2.57 KB
/
Reloaded.Mod.Loader.Server.csproj
File metadata and controls
59 lines (53 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0;net10.0</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<NoWarn>1701;1702;CS1591;NU5104;CS0067</NoWarn>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>3.0.4</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Sewer56</Authors>
<Company />
<Description>Library for communicating with 'Reloaded II Server' mod. Allows for querying information as well as load/unload/resume/suspend of mods in real time. For usage instructions please see the Programmers' section in Reloaded wiki.</Description>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/Reloaded-Project/Reloaded-II</PackageProjectUrl>
<RepositoryUrl>https://github.com/Reloaded-Project/Reloaded-II</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIcon>NuGet-Icon.png</PackageIcon>
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.39" PrivateAssets="All" />
<PackageReference Include="AnyOf" Version="0.5.0.1" />
<PackageReference Include="LiteNetLib" Version="1.3.1" />
<PackageReference Include="Mapster" Version="7.3.0" />
<PackageReference Include="Equals.Fody" Version="4.0.2">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="10.0.0" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Reloaded.Messaging" Version="2.0.2" />
<PackageReference Include="Reloaded.Messaging.Extras.Runtime" Version="2.0.0" />
<PackageReference Include="Reloaded.Messaging.Host.LiteNetLib" Version="2.0.2" />
<PackageReference Include="Reloaded.Messaging.Serializer.MessagePack" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\NuGet-Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Reloaded.Mod.Interfaces\Reloaded.Mod.Interfaces.csproj" />
</ItemGroup>
<Import Project="..\Reloaded.Mod.Loader.IPC\Reloaded.Mod.Loader.IPC.projitems" Label="Shared" />
</Project>