-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMaple2.PacketLib.csproj
29 lines (24 loc) · 1.14 KB
/
Maple2.PacketLib.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Ochirasu</Authors>
<Description>Packet library to encrypt and decrypt packets for MapleStory2. Also provides utils for packet reading and writing.</Description>
<PackageLicenseUrl>https://www.gnu.org/licenses/gpl-3.0.en.html</PackageLicenseUrl>
<RepositoryUrl>https://github.com/kOchirasu/Maple2.PacketLib</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageTags>MapleStory2, Packet, Library</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>MapleStory2 Packet Library</Title>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<PackageVersion>1.0.2</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>
</Project>