~ruther/NosSmooth

ref: e0a38d8f0e54fe4e8e27e6577a2ae345df6eabfd NosSmooth/Packets/NosSmooth.Packets/NosSmooth.Packets.csproj -rw-r--r-- 1.2 KiB
e0a38d8f — Rutherther fix(packets): make gidx family sub packet nullable, family icons optional 2 years ago
                                                                                
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
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <LangVersion>10</LangVersion>
        <Description>Contains default NosTale packets.</Description>
        <RepositoryUrl>https://github.com/Rutherther/NosSmooth/</RepositoryUrl>
        <PackageLicenseExpression>MIT</PackageLicenseExpression>
        <PackageVersion>3.1.0</PackageVersion>
        <TargetFrameworks>net7.0;netstandard2.1</TargetFrameworks>
        <PackageReleaseNotes>Add many login packets, inventory packets.</PackageReleaseNotes>
        <AssemblyVersion>3.1.0</AssemblyVersion>
        <FileVersion>3.1.0</FileVersion>
    </PropertyGroup>

    <ItemGroup>
        <ProjectReference Include="..\NosSmooth.PacketSerializer.Abstractions\NosSmooth.PacketSerializer.Abstractions.csproj" />
    </ItemGroup>
    
    <ItemGroup>
        <ProjectReference Include="..\NosSmooth.PacketSerializersGenerator\NosSmooth.PacketSerializersGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
    </ItemGroup>
    
    <ItemGroup>
      <Folder Include="Server\Raids" />
    </ItemGroup>
</Project>