This repository was archived by the owner on Mar 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMeowMiraiLib.csproj
61 lines (53 loc) · 2.19 KB
/
MeowMiraiLib.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
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
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>annotations</Nullable>
<Version>8.1.2</Version>
<Authors>DavidSciMeow</Authors>
<Company>Electronicute</Company>
<Product>MeowMiraiLib</Product>
<Copyright>Electronicute @2022</Copyright>
<PackageProjectUrl>https://github.com/DavidSciMeow/MeowMiraiLib</PackageProjectUrl>
<RepositoryUrl>https://github.com/DavidSciMeow/MeowMiraiLib</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>zh</NeutralLanguage>
<PackageLicenseExpression> AGPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AssemblyVersion></AssemblyVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>A Csharp - MiraiQQ(HTTPAPI) Backend Development Kit</Description>
<AssemblyName>Electronicute.MeowMiraiLib</AssemblyName>
<DebugType>portable</DebugType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<SignAssembly>False</SignAssembly>
<PackageReleaseNotes>alter the `Action` in CSMHelper To `Func`</PackageReleaseNotes>
<PackageTags>MiraiQQBot, Mirai, QQBot, Tencent, SDK</PackageTags>
<PackageId>Electronicute.MeowMiraiLib</PackageId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1006;1822;2211</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1006;1822;2211</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="docs\**" />
<EmbeddedResource Remove="docs\**" />
<None Remove="docs\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="WebSocket4Net" Version="0.15.2" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="MultiContext\" />
</ItemGroup>
</Project>